Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Noelkd

Noelkd

Noelkd has asked 0 questions and find answers to 25 problems.

Stats

523
EtPoint
149
Vote count
0
questions
25
answers

About

import sys map(lambda x: sys.stdout.write(" ".join((x, "\n"))), map(lambda x: "".join( "Fizz" * (not x%3) + "Buzz" * (not x%5) or str(x)), range(1, 101) ) )

whitespace.