Skip to content

Instantly share code, notes, and snippets.

@dasider41
Created September 15, 2019 21:25
Show Gist options
  • Save dasider41/0c13db04e6bd5755761caa6a0bc612bf to your computer and use it in GitHub Desktop.
Save dasider41/0c13db04e6bd5755761caa6a0bc612bf to your computer and use it in GitHub Desktop.
<?php
/*
Write a program that outputs the string representation of numbers from 1 to n.
But for multiples of three it should output “Fizz” instead of the number and for the multiples of five output “Buzz”. For numbers which are multiples of both three and five output “FizzBuzz”.
Example:
n = 15,
Return:
[
"1",
"2",
"Fizz",
"4",
"Buzz",
"Fizz",
"7",
"8",
"Fizz",
"Buzz",
"11",
"Fizz",
"13",
"14",
"FizzBuzz"
]
*/
function fizzBuzz($n): array
{
$result = [];
for ($i = 1; $i <= $n; $i++) {
$output = "";
if ($i % 3 === 0) {
$output .= "Fizz";
}
if ($i % 5 === 0) {
$output .= "Buzz";
}
$result[$i] = $output === "" ? (string) $i : $output;
}
return $result;
}
var_dump(fizzBuzz(15));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment