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.
Yes I know. But test should be able to catch that, right? I already commented this in the discussion. I also did rework my solution :)
This shouldn't work for huge numbers. Unfortunatelly there's no test written for that, but imagine 1000 digit number. There's a reason why is it passed as std::string.
You should add test with a large number that is divisible by 11. I used long long and simple stringstream and everything passed. I guess there is no test covering that scenario and my solution just happen to pass.