Return true will stop the whole function

why returning true if (issafe) function is ok…wont it stop the whole function

Hello @ANIKET_DALAL,

Returning true will indicate that we have found one possible placement of queens in the grid.
So, there is no need to recur through other paths.

This, is done when you need only one possible placement.

In case, you want to print all the possible placements of the queens in the grid, return false.

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.