This commit is contained in:
@@ -8,7 +8,7 @@ public class SudokuFactory {
|
||||
private static List<Cell> initCells(int size) {
|
||||
List<Cell> cells = new ArrayList<>(size * size);
|
||||
for (int i = 0; i < size * size; i++) {
|
||||
cells.add(new Cell());
|
||||
cells.add(new MutableCell());
|
||||
}
|
||||
return cells;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user