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 inputs never get so big that php truncates them. I'm not sure what you mean by this anyway, in php, if an int gets too large it converts to a float with scientific notation, and you might lose some precision in the process, but it doesn't truncate the number. In any case, the largest inputs in php are around
10**14
, which is well under when conversion to float happens. Something else is wrong in your code.