https://github.com/lambda-fairy/fizzbuzz
:1234: Variations on a simple theme
https://github.com/lambda-fairy/fizzbuzz
Last synced: over 1 year ago
JSON representation
:1234: Variations on a simple theme
- Host: GitHub
- URL: https://github.com/lambda-fairy/fizzbuzz
- Owner: lambda-fairy
- Created: 2013-10-25T07:42:19.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2014-12-04T23:29:24.000Z (over 11 years ago)
- Last Synced: 2025-03-17T11:59:19.947Z (over 1 year ago)
- Language: Haskell
- Homepage:
- Size: 152 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
FizzBuzz variations
===================
FizzBuzz is a simple programming problem. The algorithm is as follows:
> For numbers 1 through 100,
>
> * If the number is divisible by 3, output Fizz;
> * If the number is divisible by 5, output Buzz;
> * If the number is divisible by both 3 and 5 (15), output FizzBuzz;
> * Otherwise, output the number.
This repository is a collection of FizzBuzz implementations.