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