gurwindersingh commited on
Commit
7fd7ca4
·
1 Parent(s): dc00562

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -189,9 +189,9 @@ def main():
189
 
190
  # Display the solution or appropriate message
191
  if solve(grid):
192
-
193
- st.subheader("Sudoku Solved:")
194
- st.write(grid)
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.")