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.
can someone help me with how we arrive at that pattern?
@sgelmans91
Just counting all combinations doesn't work because values eventually overlap between different letter combinations; the shortest example is
LIIIII == 55 == XXXXXV
, and this is whysolve(6) == 83 != 84
.The whole kata is about thinking and finding the pattern.
.