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.
The expected value for this case is
false
. Your logs are incorrect.This comment is hidden because it contains spoiler information about the solution
Thank-you kindly!
This comment is hidden because it contains spoiler information about the solution
Sorry, that shouldn't have been there, it is unused.
Initially, I was running the loop
for(size_t i=0; i < num_bits;++i)
, when I changed from that to the current solution, I forgot to removenum_bits
correct
toupper
changes lowercase (eg 'd' -> 'D'), sor['D'-'A']='1'
toupper
changes uppercase (eg 'D' -> 'D'), sor['D'-'A']='1'
same