Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fizzbuzz.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Write a program that prints the numbers from 1 to 100. But for
multiples of three print “Fizz” instead of the number and for
the multiples of five print “Buzz”. For numbers which are multiples
of both three and five print “FizzBuzz”.
of both three and five print “FIZZBUZZ”.

We will use a variation of this test in which the last number of
the series isn't necessarily 100, and the two numbers being tested
Expand All @@ -32,7 +32,7 @@
Fizz
13
14
FizzBuzz
FIZZBUZZ
16
17
Fizz
Expand Down