I want to display a sudoku grid from the values in an array.
Here's my code
fig, ax =plt.subplots(1,1)
ax.axis('tight')
ax.axis('off')
ax.table(cellText=sudoku2,loc="center")
plt.show()
And here's my output sudokugrid
How do I get the cells to be squares ? I'm lost.