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, read the posts below before creating a new issue about the same.
Explanation:
(the counter
n
is 1-based to make it easier to read)n[1]/3*1000
Note: all these are int arithmeticn[6]/3*600
n[5]/3*500
n[4]/3*400
n[3]/3*300
n[2]/3*200
n[1]%3*100
use mod to catch the remainder 1's not worth 1000 pointsn[5]%3*50
use mod to catch the remainder 5's not worth 500 points