Skip to content

Commit bc8e4b9

Browse files
authored
[20251007] BOJ / G4 / 우유 도시 / 한종욱
1 parent a90a9db commit bc8e4b9

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

Ukj0ng/202510/07 BOJ G4 우유 도시.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -70,15 +70,5 @@ public class Main {
7070
private static boolean OOB(int nx, int ny) {
7171
return nx < 0 || nx > N-1 || ny < 0 || ny > N-1;
7272
}
73-
74-
private static boolean canDrink(int current, int next) {
75-
if (current == 0 && next == 1) return true;
76-
77-
if (current == 1 && next == 2) return true;
78-
79-
if (current == 2 && next == 0) return true;
80-
81-
return false;
82-
}
8373
}
8474
```

0 commit comments

Comments
 (0)