In the n queens problem while printing all the solutions, in the base case we returned false so that it continues to look for more solutions, when we returned true it only printed one solution.
However in rat in maze problem, in the base case we returned true not false, then why was it printing all the solutions. Why did it still continue to look for more solutions when we returned true in the base case.