Skip to content

Commit 7a16599

Browse files
committed
Add fizzbuzz description
1 parent 4519e24 commit 7a16599

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

fizzbuzz/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# FizzBuzz array
2+
3+
FizzBuzz is the "Hello World" of technical interview questions. Your function should write the numbers from 1 to n with a twist; instead of any multiplier of 3, you output Fizz, instead of multiplers of 5 you output Buzz, and if they happen at the same time, you should use FizzBuzz. The output of your function should be a mixed array of numbers and strings.
4+
5+
> Description found in [javascript.onl](https://javascript.onl/problems/1.html)

0 commit comments

Comments
 (0)