Created
August 25, 2014 23:39
-
-
Save tknhs/44278f07ffd0cfc3cb52 to your computer and use it in GitHub Desktop.
FizzBuzz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# output: 1 - 100 | |
# don't use "if" and "for" | |
print "\n".join(map(lambda x: [["FizzBuzz", "Fizz"], ["Buzz", str(x)]][bool(x%3)][bool(x%5)], range(1, 101))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment