gurwindersingh commited on
Commit
9b08fea
·
1 Parent(s): b7b5aa9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -188,9 +188,9 @@ def main():
188
 
189
  # Display the solution or appropriate message
190
  if solve(grid):
191
- Solved(grid)
192
  col2.subheader("Sudoku Solved:")
193
- st.write(grid)
194
  else:
195
  st.write("No solution found.")
196
 
 
188
 
189
  # Display the solution or appropriate message
190
  if solve(grid):
191
+
192
  col2.subheader("Sudoku Solved:")
193
+ st.write(Solved(grid))
194
  else:
195
  st.write("No solution found.")
196