Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 219 Bytes

File metadata and controls

8 lines (6 loc) · 219 Bytes

coding-problem-solving

I solved following ways: need backtracing recursion.

#to extract sub-grid initial row and col position, I used following equations:

sub-grid row = (any row/3)*3; sub-grid col = (any col/3)*3;