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.
This comment is hidden because it contains spoiler information about the solution
@hate_coding I think that what you've explained here should be in the description.
You do each digit separately, apparently. It tripped me up as well.
So then "62" from the test case would be (pseudocode):
Finally adding the above together will yield (6)"001110" + (2)"0110" = "0011100110".
Shouldn't be 62 = 0000011100110 instead of 0011100110?, if you mean 6 is the "number of bits" why doesn't affect number "2" too?