Loading collection data...
Collections are a way for you to organize kata so that you can create your own training routines. Every collection you create is public and automatically sharable with other warriors. After you have added a few kata to a collection you and others can train on the kata contained within the collection.
Get started now by creating a new collection.
It is possible to use a recursion strategy without using any sudoku-specific solver techniques, and without having to worry about time constraints.
this is illegal, LOL.
LOL
Hi,
It's a numeral system with a base equal to 27.
Decimal is the system you use everyday to count; it's a numeral system with a base equal to 10, it has 10 different digits: 0 to 9.
hexadecimal is another system, with a base equal to 16. It has 16 different digits: 0 to 9, plus A to F. We use it a lot to represent the value of a byte.
0 to 9 in hexadecimal is equal to 0 to 9 in decimal. Then, A is equal to 10, B is equal to 11, C is equal to 12, D is equal to 13, E is equal to 14, and F is equal to 15.
So:
0
in hexadecimal is equal to0
in decimal1
in hexadecimal is equal to1
in decimalBut,
10
in hexadecimal is NOT equal to10
in decimal10
in hexadecimal is equal to16
in decimalFor exactly the same reason,
"A "
in our base 27 numeral system is equal to 27 in decimal.If this is still confusing for you, I suggest you read more about numeral systems by following the Wikipedia links I provided.
Cheers
This comment is hidden because it contains spoiler information about the solution
if you're exceeding the call stack size with these test cases, your algorithm is inefficient or incorrect
it's obvious that any recursion answer would be rejected for silly test limits any way that's make no sense :(