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.
No, it's not. 99 is
'XCIX'
.Is
'IC'
a valid Roman numeral for 99 ? I thought so ; and this code wouldn't manage these kind of forms.'CCD'
is not a valid roman numeral:'CD'
is 400'CCC'
is 300So
'CCD'
won't be passed to the function.Will give incorrect result for 'CCD' (for example). It will return 200, but should 300.
Will give incorrect result for 'CCD' (for example). It will return 400, but should 300.