gurwindersingh commited on
Commit
8a83802
·
1 Parent(s): 6ba792b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -168,7 +168,7 @@ def main():
168
 
169
  if uploaded_file is not None:
170
  col1, col2 = st.columns(2)
171
- col1.subheader("Sudoku Puzzle")
172
  puzzle = Image.open(uploaded_file)
173
  col1.image(puzzle, use_column_width=True)
174
  puzzle = np.asarray(puzzle)
@@ -211,7 +211,7 @@ def main():
211
  col2.table(grid)
212
 
213
  else:
214
- st.write("No solution found.")
215
 
216
  if __name__ == '__main__':
217
  main()
 
168
 
169
  if uploaded_file is not None:
170
  col1, col2 = st.columns(2)
171
+ col1.subheader("Sudoku Puzzle:")
172
  puzzle = Image.open(uploaded_file)
173
  col1.image(puzzle, use_column_width=True)
174
  puzzle = np.asarray(puzzle)
 
211
  col2.table(grid)
212
 
213
  else:
214
+ st.write("No Solution Found.")
215
 
216
  if __name__ == '__main__':
217
  main()