We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a90a9db commit bc8e4b9Copy full SHA for bc8e4b9
1 file changed
Ukj0ng/202510/07 BOJ G4 우유 도시.md
@@ -70,15 +70,5 @@ public class Main {
70
private static boolean OOB(int nx, int ny) {
71
return nx < 0 || nx > N-1 || ny < 0 || ny > N-1;
72
}
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
- }
83
84
```
0 commit comments