https://github.com/vbop9834/fizzbuzz
https://github.com/vbop9834/fizzbuzz
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vbop9834/fizzbuzz
- Owner: vbop9834
- Created: 2015-01-08T22:15:50.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-01-08T22:18:11.000Z (over 10 years ago)
- Last Synced: 2025-02-14T15:55:01.069Z (5 months ago)
- Language: JavaScript
- Size: 133 KB
- Stars: 0
- Watchers: 2
- 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