We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d80b6b commit 1fd755fCopy full SHA for 1fd755f
Python/one-line-solution.py
@@ -0,0 +1,3 @@
1
+# Python 1 line code for FizzBuzz
2
+# Author: @mohammed-ijas
3
+print(*map(lambda v: 'Fizz'*(not v%3)+'Buzz'*(not v%5) or v, range(1,101)),sep=' ')
0 commit comments