fizzbuzz icon indicating copy to clipboard operation
fizzbuzz copied to clipboard

Implementations of FizzBuzz test, with different optimisations

Results 2 fizzbuzz issues
Sort by recently updated
recently updated
newest added

`recudeprint.c` By changing the output count per iteration from 15 to 30, reduce the number of `myitoa` calls from 8/15 to 3/30. (The last digit is always the same for...

As n = n + 300 (mod 15), this algorithm takes three buffers of 100 numbers each, writes them into output, and increases numbers (that aren't divisible by 3 and...