-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Fizz-Buzz | ||
FizzBuzz test | ||
Return an array containing the numbers from 1 to N, where N is the parametered value. N will never be less than 1. | ||
|
||
Replace certain values however if any of the following conditions are met: | ||
|
||
If the value is a multiple of 3: use the value 'Fizz' instead | ||
If the value is a multiple of 5: use the value 'Buzz' instead | ||
If the value is a multiple of 3 & 5: use the value 'FizzBuzz' instead | ||
|