gurwindersingh commited on
Commit
9ede33d
·
1 Parent(s): 4174e23

Update app.py

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