Suppose you want to implement a Sudoku game that consists of
Suppose you want to implement a Sudoku game that consists of 9x9 rows and columns of squares. Which layout would be the best one to use and why?
Solution
GridLayout should be used if you are trying to create a sudoku game as all the boxes present in game should be of same sizes which is easily possible with thr GridLayout

