please help
link to question-> https://leetcode.com/problems/sudoku-solver/
link to code->https://ide.codingblocks.com/s/652005
getting error
please help
link to question-> https://leetcode.com/problems/sudoku-solver/
link to code->https://ide.codingblocks.com/s/652005
getting error
hi @ikshuldureja130
there was a small error in ur code
if(j==9) solve(i+1,0,board);
here return keyword was missing…
if(j==9) return solve(i+1,0,board);
just make this correction, ur code will work fine and pass all test cases…
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.
It worked…Thank you so much!!