Ad
  • Custom User Avatar

    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.

  • Custom User Avatar

    In which language there are no random test?