FizzBuzz
00:00
EasyWrite a function called `fizz_buzz` that takes a number n and returns a list of strings from 1 to n. For multiples of 3, use 'Fizz'. For multiples of 5, use 'Buzz'. For multiples of both, use 'FizzBuzz'. Otherwise, use the number as a string.
solution.py