11# Replace numbers that are divisible by 3 with "fizz"
22def fizz_buzz (numbers ):
33 """Implement the Fizz buzz game.
4-
4+
55 >>> fizz_buzz([3, 6, 9, 12])
66 ['fizz', 'fizz', 'fizz', 'fizz']
77 """
88
9+
910# # Replace numbers that are divisible by 3 with "fizz"
1011# def fizz_buzz(numbers):
1112# """Implement the Fizz buzz game.
12-
13+
1314# >>> fizz_buzz([3, 6, 9, 12])
1415# ['fizz', 'fizz', 'fizz', 'fizz']
1516# """
@@ -25,7 +26,7 @@ def fizz_buzz(numbers):
2526# Replace numbers that are divisible by 5 with "buzz"
2627# def fizz_buzz(numbers):
2728# """Implement the Fizz buzz game.
28-
29+
2930# >>> fizz_buzz([3, 6, 9, 12])
3031# ['fizz', 'fizz', 'fizz', 'fizz']
3132
@@ -46,13 +47,13 @@ def fizz_buzz(numbers):
4647# Replace numbers that are divisible by 3 and 5 with "fizz buzz"
4748# def fizz_buzz(numbers):
4849# """Implement the Fizz buzz game.
49-
50+
5051# >>> fizz_buzz([3, 6, 9, 12])
5152# ['fizz', 'fizz', 'fizz', 'fizz']
5253
5354# >>> fizz_buzz([5, 10, 20, 25])
5455# ['buzz', 'buzz', 'buzz', 'buzz']
55-
56+
5657# >>> fizz_buzz([15, 30, 45])
5758# ['fizz buzz', 'fizz buzz', 'fizz buzz']
5859
0 commit comments