N queen using backtracking

Hello @hrishikeshjanjal,

  1. In the base case, the return statement is missing causing run-time error.

  2. The logic you are applying in the second nested for loop should be enclosed within the if-condition.
    Reason:
    You’ll only execute that logic if it is safe to place queen at that particular cell of the matrix.

I have modified your code:

Hope, this would help.
Give a like if you are satisfied.

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.