Fix solver

generator and/or solver still needs optimization
This commit is contained in:
2024-07-10 22:34:53 +02:00
parent 9a38d85e84
commit 82a5660bc9
8 changed files with 99 additions and 48 deletions

View File

@@ -54,7 +54,7 @@ fun PuzzleGrid(
grid: Grid
) {
Column(modifier = modifier) {
for (row in grid.rows) {
for (row in grid) {
Row(
modifier = Modifier
.fillMaxWidth()