From 07932c1783cef1cb0269324dcb2e7edfa420869c Mon Sep 17 00:00:00 2001 From: Yash Agrawal Date: Sat, 11 Apr 2026 21:14:39 +0530 Subject: [PATCH] closes #27: remove unused variable coords from get_coords function --- .../Pacific Atlantic Water Flow - Leetcode 417.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Pacific Atlantic Water Flow - Leetcode 417/Pacific Atlantic Water Flow - Leetcode 417.py b/Pacific Atlantic Water Flow - Leetcode 417/Pacific Atlantic Water Flow - Leetcode 417.py index 90aea0b..5c38ee5 100644 --- a/Pacific Atlantic Water Flow - Leetcode 417/Pacific Atlantic Water Flow - Leetcode 417.py +++ b/Pacific Atlantic Water Flow - Leetcode 417/Pacific Atlantic Water Flow - Leetcode 417.py @@ -27,7 +27,6 @@ def pacificAtlantic(self, heights: List[List[int]]) -> List[List[int]]: a_seen.add((m - 1, j)) def get_coords(que, seen): - coords = set() while que: i, j = que.popleft() for i_off, j_off in [(0, 1), (1, 0), (-1, 0), (0, -1)]: