Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in 3rd party category for Fizz Buzz by manojblue15
import numpy as np
def checkio(a):
if (np.mod(a,5)==0)&(np.mod(a,3)==0):
n="Fizz Buzz"
print('lol')
elif np.mod(a,3)==0:
n="Fizz"
elif np.mod(a,5)==0:
n="Buzz"
else:
n=str(a)
return n
April 17, 2017