- [ ] write the algorithm for the search - [ ] use the appropriate stopping condition: - stop if max depth is reached - stop if all board is white - [ ] output should be a string: (ex: 4x4 board) - 0000 0000 0000 0000 (goal state all white side up) - 1000 0100 1111 1110 (not a goal state but max_d is reached)
write the algorithm for the search
use the appropriate stopping condition:
stop if max depth is reached
stop if all board is white
output should be a string:
(ex: 4x4 board)
0000 0000 0000 0000 (goal state all white side up)
1000 0100 1111 1110 (not a goal state but max_d is reached)