Python Object Based Sudoku Solver
GITHUB: code here Recently I have been spending most of my time trying to learn C and work on the 8-bit computer, and I realised the other day that I had not actually done any proper Python in over a month. Python was the first language I learnt and to this day is probably still my favourite due to its readability and wide selections of libraries. Therefore I set myself the challenge to build a Sudoku solver during my lunch breaks. I absolutely love object orientated programming, and I've been doing a lot of C recently, I wanted to make this object oriented as possible. Here my plan: I am going to make each level of the grid an object. There will be cell objects. This will be for one…