Hacker News new | ask | show | jobs
by Terretta 2329 days ago
This is one of the vanishingly small implementations of fizz buzz posted online that don’t have separate paths for fizzbuzz cases than for fizz and buzz cases.

Usual solve is %3 = fizz, %5 = buzz, %15 = fizzbuzz ...

If you change 3 or 5, you now have to go edit 15 too, does that not seem like a problem?

Nicely done.