DEV Community

Discussion on: The FizzBuzz problem

Collapse
 
pranjaljain0 profile image
Pranjal Jain

For 100 operations it might seem fast but for 10000 operations it starts to show a good difference.
here is the runtime of three functions with 10000 operations
6.550000000160594
2.3500000001508425
2.0000000000575113

Collapse
 
paddy3118 profile image
Paddy3118 • Edited

Unfortunately four numbers doesn't explain much.
Modulo is usually one machine code instruction. Other parts of the program will probably dwarf its execution time, such as I/O.