Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vbop9834/fizzbuzz
https://github.com/vbop9834/fizzbuzz
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/vbop9834/fizzbuzz
- Owner: vbop9834
- Created: 2015-01-08T22:15:50.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-08T22:18:11.000Z (almost 10 years ago)
- Last Synced: 2023-02-27T16:13:09.155Z (almost 2 years ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FizzBuzz
Solving FizzBuzz 2 ways
version 1 is my second attempt
-----------------------------------------------------------------
FizzBuzz Problem StatementBased on a traditional English children's game
Print the numbers 1..100
For multiples of 3, print "Fizz" instead of the number
For multiples of 5, print "Buzz" instead of the number
For multiples of 3 and 5, print "FizzBuzz" instead of the number
Here: fill an array instead of printing + some other complications