Skip to content

Instantly share code, notes, and snippets.

View KasparMetsa's full-sized avatar

Kaspar KasparMetsa

  • Axual B.V.
  • Utrecht
  • 16:50 (UTC +02:00)
View GitHub Profile
# Python starter
def fizz_buzz(numbers):
# Write your solution here
pass
# Test
print(fizz_buzz([1, 2, 3, 4, 5, 15]))
# Expected: [1, 2, 'Fizz', 4, 'Buzz', 'FizzBuzz']