Skip to content

Instantly share code, notes, and snippets.

@mukulrawat1986
Created April 15, 2015 21:39
Show Gist options
  • Save mukulrawat1986/8699f9111d938eb9f601 to your computer and use it in GitHub Desktop.
Save mukulrawat1986/8699f9111d938eb9f601 to your computer and use it in GitHub Desktop.
Code wars Fizzbuzz
def fizzbuzz(n):
# your code here
return ['FizzBuzz' if i%15 == 0 else "Fizz" if i%3==0 else "Buzz" if i%5==0 else i for i in xrange(1,n+1)]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment