Skip to content

Instantly share code, notes, and snippets.

@zonuexe
Created April 2, 2019 09:46
Show Gist options
  • Save zonuexe/c398e570a0c633ba0823a5877ba234c7 to your computer and use it in GitHub Desktop.
Save zonuexe/c398e570a0c633ba0823a5877ba234c7 to your computer and use it in GitHub Desktop.
<?= implode(PHP_EOL, array_map(function ($n) {
return [0 => 'FizzBuzz', 3 => 'Fizz', 5 => 'Buzz', 6 => 'Fizz',
9 => 'Fizz', 10 => 'Buzz', 12 => 'Fizz'][$n%15] ?? $n;
}, range(0, 100))) . PHP_EOL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment