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.
In C the random tests are merely 100 (necessarily repetitive) selections from 15 of the first 16 precomputed answers (omitting
num_primorial(0)
), instead of running a reference implementation on random inputs. I understand the range of inputs is narrowed by the forumla and native data types, but it seems silly to call that random anyway.P.S. precomputation is valid strategy and indeed the best thing for some limited inputs.
P.P.S. multiplying the 17th prime overflows
unsigned long long
anyway.In which language there are no random test?