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.
__int128
is not standard, but apparently C translator decided to use it to get wider range of possible values.I am trying to ask why do you use
unsigned long long int
, especially while solution setup quite clearly (I think) hints you that it won't be enough, and wider data type is needed.Solution setup uses
__int128
, it might be worth to stick to it.