Day 22: Tiny Sudoku (4x4) Solver
Solve the 4x4 Sudoku board (0 denotes empty). Return solved board as list of lists.
def solve(): board = [ [1,0,0,4], [0,0,3,0], [0,3,0,0], [2,0,0,1] ] return board
Run
🐟 You’ve reached the stage where luck looks like skill.