Currently working on a small sudoku solver, i use the boolean
if 0 in BOARD_EASY:
do the thing
having board as this value for testing purposes:
BOARD_EASY =[
[7,2,5,8,1,3,6,4,9],
[4,8,6,9,2,7,1,5,3],
[3,1,9,6,5,4,8,7,2],
[5,6,4,2,7,1,3,9,8],
[8,9,1,5,3,9,4,2,7],
[2,7,3,4,8,9,5,6,1],
[6,3,8,7,9,5,2,1,4],
[9,4,2,1,6,8,7,3,5],
[0,0,7,3,4,2,9,8,6]
]
for some reasons the boolean return false, while there is still 0's in the board, am i missing something? It doesn't seems to check like the the first row of board_easy (i tried by removing the last digit for exemple)
Edit : Allowed me to finish my project, thank y'all ! (https://github.com/Lem0nRavioli/sudoku_solver)