3. Sudoku Puzzle #

Created Friday 26 June 2020

Given:


Parikh’s solution: s


Jargon - Only used in case of Backtracking

  1. Positive Base case: Indicates that the intended task is successfully completed. e.g a successful config for N-queens, sudoku
  2. Negative Base case: Indicates that the task is stuck, won’t be able to proceed further. e.g An n-queens config which is in the middle of completing a config but a queen is impossible to place.

Note:

  1. There may be multiple postive and negative base cases.
  2. Number of times positives base case evoked = number of successful configs(if known/given before hand). All other are negative ones.