Skip to content
Snippets Groups Projects
Commit d2158a1a authored by Barrenetxea Berasategi, Xabier's avatar Barrenetxea Berasategi, Xabier
Browse files

Xabi 2

parent 2136bb2f
No related branches found
No related tags found
No related merge requests found
Pipeline #30221 passed
......@@ -5,13 +5,12 @@ def fizzbuzz(n:int) -> str:
And for the multiples of five print "Buzz".
For numbers which are multiples of both three and five print "FizzBuzz".
"""
if 3 % n == 0 and 5 % n == 0:
if n % 3 == 0 and n % 5 == 0:
return "FizzBuzz"
elif 3 % n == 0:
elif n % 3 == 0:
return "Fizz"
elif 5 % n ==0:
elif n % 5 == 0:
return "Buzz"
else:
return str(n)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment