Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/divineomega/fizz-buzz-challenge
https://github.com/divineomega/fizz-buzz-challenge
fizz-buzz
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/divineomega/fizz-buzz-challenge
- Owner: DivineOmega
- Created: 2016-11-01T20:14:00.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-02T22:32:15.000Z (about 8 years ago)
- Last Synced: 2024-11-06T09:49:30.750Z (2 months ago)
- Topics: fizz-buzz
- Language: Python
- Size: 2.93 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fizz Buzz Challenge
Fizz Buzz is classic programming challenge. This repo aims to contain Fizz Buzz implementations for as many languages as possible.
## Want to submit an implementation?
1. Fork [this repository](https://github.com/DivineOmega/fizz-buzz-challenge).
2. Write your implementation. Be sure to name the file `language_method.ext`. For example, a basic Python implementation could be called `python_basic.py`.
4. Submit a pull request!## Requirements
Any Fizz Buzz implementation will be accepted, with the following restrictions.
* Implementations must present (in any fashion) a delimited output of Fizz Buzz counting to 45 (the 3rd FizzBuzz).
* Implementations must not be dangerous or negatively affect the privacy and/or security of people who compile and/or run them.## Example output
```
1, 2, Fizz, 4, Buzz, Fizz, 7, 8, Fizz, Buzz, 11, Fizz, 13, 14, FizzBuzz, 16, 17, Fizz, 19, Buzz, Fizz, 22, 23, Fizz, Buzz, 26, Fizz, 28, 29, FizzBuzz, 31, 32, Fizz, 34, Buzz, Fizz, 37, 38, Fizz, Buzz, 41, Fizz, 43, 44, FizzBuzz
```# About Fizz Buzz
> Players generally sit in a circle. The player designated to go first says the number "1", and each player thenceforth counts one number in turn. However, any number divisible by three is replaced by the word fizz and any divisible by five by the word buzz. Numbers divisible by both become fizz buzz. A player who hesitates or makes a mistake is eliminated from the game.
Source: [Wikipedia](https://en.wikipedia.org/wiki/Fizz_buzz)