gurwindersingh commited on
Commit
1101670
·
1 Parent(s): 1783f03

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -12
app.py CHANGED
@@ -215,18 +215,6 @@ def main():
215
 
216
  col2.subheader("Sudoku Solved:")
217
 
218
- table_html = "<table style='border-collapse: collapse;'>"
219
 
220
- for row in grid:
221
- table_html += "<tr>"
222
- for value in row:
223
- table_html += f"<td style='border: 1px solid black; padding: 8px;'>{value}</td>"
224
- table_html += "</tr>"
225
-
226
- table_html += "</table>"
227
-
228
- st.markdown(table_html, unsafe_allow_html=True)
229
-
230
-
231
  if __name__ == '__main__':
232
  main()
 
215
 
216
  col2.subheader("Sudoku Solved:")
217
 
 
218
 
 
 
 
 
 
 
 
 
 
 
 
219
  if __name__ == '__main__':
220
  main()