Skip to content

Commit 9a605b5

Browse files
refactor 417
1 parent 043fa76 commit 9a605b5

File tree

1 file changed

+0
-16
lines changed
  • src/main/java/com/fishercoder/solutions

1 file changed

+0
-16
lines changed

src/main/java/com/fishercoder/solutions/_417.java

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,6 @@
22

33
import java.util.ArrayList;
44
import java.util.List;
5-
/**
6-
* 417. Pacific Atlantic Water Flow
7-
*
8-
* Given the following 5x5 matrix:
9-
10-
Pacific ~ ~ ~ ~ ~
11-
~ 1 2 2 3 (5) *
12-
~ 3 2 3 (4) (4) *
13-
~ 2 4 (5) 3 1 *
14-
~ (6) (7) 1 4 5 *
15-
~ (5) 1 1 2 4 *
16-
* * * * * Atlantic
17-
18-
Return:
19-
20-
[[0, 4], [1, 3], [1, 4], [2, 2], [3, 0], [3, 1], [4, 0]] (positions with parentheses in above matrix).*/
215

226
public class _417 {
237
public static class Solution1 {

0 commit comments

Comments
 (0)