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)]: