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

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

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.