Skip to content

Instantly share code, notes, and snippets.

@SahilC
Last active December 15, 2015 05:49
Show Gist options
  • Save SahilC/5211964 to your computer and use it in GitHub Desktop.
Save SahilC/5211964 to your computer and use it in GitHub Desktop.
vacationlabs registration link solution
def f(n):
for i in xrange(1,n):
if i%3==0 and i%5==0:
print 'Whazaa'
elif i%3==0:
print 'Hip'
elif i%5==0:
print 'Hop'
else:
print i
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment