Difference between revisions of "Haskell Quiz/FizzBuzz"

From HaskellWiki
Jump to navigation Jump to search
(add GGR)
Line 19: Line 19:
 
* [[Haskell Quiz/FizzBuzz/Solution Mikbe|Mike Bethany]]
 
* [[Haskell Quiz/FizzBuzz/Solution Mikbe|Mike Bethany]]
 
* [[Haskell Quiz/FizzBuzz/Solution Acontorer|Aaron Contorer]]
 
* [[Haskell Quiz/FizzBuzz/Solution Acontorer|Aaron Contorer]]
  +
* [[Haskell Quiz/FizzBuzz/Solution Heisenbug|Gabor Greif]]
   
 
[[Category:Haskell Quiz|FizzBuzz]]
 
[[Category:Haskell Quiz|FizzBuzz]]

Revision as of 17:43, 31 July 2017

"There has been some debate on the proper ways to screen programmers you intend to hire. A common theory is that you really need to have the programmer write some code for you to accurately gauge their skill. Exactly what to have them write is another debate, but the blogosphere has recently been abuzz with this question as a screener:

Write a program that prints the numbers from 1 to 100. But for multiples of three print “Fizz” instead of the number and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”.

Pretend you've just walked into a job interview and been hit with this question. Solve it as you would under such circumstances for this week's Ruby Quiz."

The problem

Solutions