Created
June 28, 2016 20:42
-
-
Save konstantinfarrell/c4f84ea579615da63de0eb325753b71d to your computer and use it in GitHub Desktop.
FizzBuzz one-liner in Python 3
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
# Using a lambda function | |
print(list(map(lambda i: "Fizz"*(i%3==0)+"Buzz"*(i%5==0) or str(i), range(1,101)))) | |
# Using a for loop | |
for i in range(1, 101): print("Fizz"*(i%3==0)+"Buzz"*(i%5==0) or str(i)) |
Neat!
Didnยดt like the print in the loop though:
FizzBuzzChallenge = "\n".join(["Fizz"*(i%3==0)+"Buzz"*(i%5==0) or str(i) for i in range(101)])
print(FizzBuzzChallenge)
In this case str(i)
is necessary.
print('\n'.join(list(map(lambda i: "Fizz"*(i%3==0)+"Buzz"*(i%5==0) or str(i), range(1,int(input())+1)))))
print(list(map(lambda i: "Fizz" * (i % 3 == 0) + "Buzz" * (i % 5 == 0) or str(i), range(0, 101))))
@JonathanDagan really nice! But this one actually works:
_=[print("Fizz"*(i%3==0)+"Buzz"*(i%5==0)or i)for i in range(1,101)]
You still get the output, but the print doesn't return the list with None
values.
i%3==0
โ i%3<1
saves 1 byte per comparison.
[print("Fizz"*(i%3<1)+"Buzz"*(i%5<1)or i)for i in range(1,101)]
@ijknabla some next level memory management ๐๐๐
would even be 2 bytes since you also changed it for the divisible by 5 or was it already 1 byte for both?
@JonathanDagan
YES
i%3==0
โi%3<1
(-1 bytes)i%5==0
โi%5<1
(-1 bytes)
total 2 bytes
๐ฏ
Similar in length, but using a different technique, and I'm using input
and count
(itertools
), so it goes forever but is user controlled:
[input("fizz"[i%3*4:] + "buzz"[i%5*4:] or i) for i in count(1)]
I guess count
shaves off a few more characters as well.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
list comprehension verion:
also the:
isn't really necessary
otherwise nice implementation