Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vbop9834/fizzbuzz


https://github.com/vbop9834/fizzbuzz

Last synced: 1 day ago
JSON representation

Awesome Lists containing this project

README

        

# FizzBuzz

Solving FizzBuzz 2 ways

version 1 is my second attempt

-----------------------------------------------------------------
FizzBuzz Problem Statement

Based 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