Spaces:
Sleeping
Sleeping
Commit
·
9ede33d
1
Parent(s):
4174e23
Update app.py
Browse files
app.py
CHANGED
@@ -189,9 +189,8 @@ def main():
|
|
189 |
# Display the solution or appropriate message
|
190 |
if solve(grid):
|
191 |
|
192 |
-
|
193 |
-
|
194 |
-
col2.write(row)
|
195 |
|
196 |
else:
|
197 |
col2.write("No solution found.")
|
|
|
189 |
# Display the solution or appropriate message
|
190 |
if solve(grid):
|
191 |
|
192 |
+
st.subheader("Sudoku Solved:")
|
193 |
+
st.write(grid[:])
|
|
|
194 |
|
195 |
else:
|
196 |
col2.write("No solution found.")
|