Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of Noelkd

Noelkd

Noelkd has asked 1 questions and find answers to 26 problems.

Stats

539
EtPoint
150
Vote count
1
questions
26
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.