N-Queen using Bitsets output is showing 0
Hello @hrishikeshjanjal,
This is because you are passing a copy of variable ans.
So, the changes made to the value of ans would not be reflected back in the main function.
Solution:
Pass the variable ans by reference.
Modification:
void solve(int r,int n,int &ans){}
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.