Skip to content

Instantly share code, notes, and snippets.

@msysyamamoto
Created November 30, 2012 23:34
Show Gist options
  • Save msysyamamoto/4179495 to your computer and use it in GitHub Desktop.
Save msysyamamoto/4179495 to your computer and use it in GitHub Desktop.
剰余を使わないFizzBuzz
<?php
function fizzbuzz($fs, $bs, $i = 1)
{
if ($i <= 100) {
$fs[] = $f = array_shift($fs);
$bs[] = $b = array_shift($bs);
printf('%s', $f . $b) || print $i;
echo PHP_EOL;
fizzbuzz($fs, $bs, $i + 1);
}
}
fizzbuzz(array('', '', 'Fizz'), array('', '', '', '', 'Buzz'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment