Spaces:
Sleeping
Sleeping
Commit
·
cb54a47
1
Parent(s):
38f06f9
Update app.py
Browse files
app.py
CHANGED
@@ -190,7 +190,9 @@ def main():
|
|
190 |
if solve(grid):
|
191 |
|
192 |
col2.subheader("Sudoku Solved:")
|
193 |
-
|
|
|
|
|
194 |
else:
|
195 |
col2.write("No solution found.")
|
196 |
|
|
|
190 |
if solve(grid):
|
191 |
|
192 |
col2.subheader("Sudoku Solved:")
|
193 |
+
for row in grid:
|
194 |
+
col2.subheader(row)
|
195 |
+
|
196 |
else:
|
197 |
col2.write("No solution found.")
|
198 |
|