1
vote
What is your solution to the FizzBuzz problem?
Simple python:
for i in range(1,101): if (i % 5 == 0) and (i % 3 == 0): print "FizzBuzz" continue if i % 3 == 0: print "Fizz" …
2
votes
Interview Questions for an Intern
Steve Yegge put up these phone-screen questions that is supposed to eliminate the worst candida …
