i want to know the running time of Pencil and paper algorithm for Sudoku Solver following are the statements of algorithm http://www.ams.org/notices/200904/tx090400460p.pdf:
1. Find all forced numbers in the puzzle.
2. Mark up the puzzle.
3. Search iteratively for pre-emptive sets in all rows, columns, and boxes—taking appropriate cross out action as each new pre-emptive set is discovered until
either
4. (a) a solution is found or
(b) a random choice must be made for continuation.
If 4(a), then end; if 4(b), then go to step 3
i want to find running time of above algorithm in terms of Big-O
notation.