We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a994351 commit bbd9519Copy full SHA for bbd9519
2 files changed
백준/Gold/2239. 스도쿠/README.md
@@ -4,15 +4,15 @@
4
5
### 성능 요약
6
7
-메모리: 16440 KB, 시간: 284 ms
+메모리: 16496 KB, 시간: 272 ms
8
9
### 분류
10
11
구현, 백트래킹
12
13
### 제출 일자
14
15
-2025년 10월 29일 22:57:46
+2025년 10월 29일 23:02:24
16
17
### 문제 설명
18
백준/Gold/2239. 스도쿠/스도쿠.java
@@ -30,7 +30,7 @@ static boolean dfs(int k) {
30
box[b] |= bit;
31
32
if (dfs(k + 1)) return true;
33
-
+
34
row[r] ^= bit;
35
col[c] ^= bit;
36
box[b] ^= bit;
@@ -63,7 +63,9 @@ public static void main(String[] args) throws IOException {
63
64
StringBuilder sb = new StringBuilder();
65
for (int i = 0; i < 9; i++) {
66
- for (int j = 0; j < 9; j++) sb.append(a[i][j]);
+ for (int j = 0; j < 9; j++) {
67
+ sb.append(a[i][j]);
68
+ }
69
sb.append('\n');
70
}
71
System.out.print(sb.toString());
0 commit comments