Skip to content
Snippets Groups Projects

Master

Open Boto Sanchez, Fernando requested to merge fernando.boto/fizzbuzz:master into master
1 file
+ 8
8
Compare changes
  • Side-by-side
  • Inline
+ 8
8
@@ -5,13 +5,13 @@ 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".
"""
for i in range(1,101):
if i%3==0 and not i%5==0:
print ("Fizz")
if i%5 and not i%3==0:
print ("Buzz")
if i%3==0 and i%5==0:
print ("FizzBuzz")
if n%3==0:
return ("Fizz")
if n%5==0:
return ("Buzz")
if n%3==0 and i%5==0:
return ("FizzBuzz")
return ""
return str(n)
Loading