merge
Some checks failed
Linux arm64 / Build (push) Failing after 25s

This commit is contained in:
Janet-Doe
2025-01-21 17:04:11 +01:00
parent 7904d0a27d
commit 6c3389dd2d

View File

@@ -101,7 +101,7 @@ public class Sudoku {
} }
} }
public String toString (){ public String toString () {
StringBuilder sb = new StringBuilder(); StringBuilder sb = new StringBuilder();
sb.append("Sudoku {"); sb.append("Sudoku {");
for (int i = 0; i < getSize(); i++) { for (int i = 0; i < getSize(); i++) {
@@ -114,5 +114,4 @@ public class Sudoku {
sb.append("\n}"); sb.append("\n}");
return sb.toString(); return sb.toString();
} }
} }