Difference between revisions of "Haskell Quiz/Happy Numbers"

From HaskellWiki
Jump to navigation Jump to search
m (remove category)
(+cat)
 
Line 8: Line 8:
   
 
* [[Haskell Quiz/Happy Numbers/Solution Dolio|Dan Doel]]
 
* [[Haskell Quiz/Happy Numbers/Solution Dolio|Dan Doel]]
  +
  +
[[Category:Haskell Quiz|Happy Numbers]]

Latest revision as of 10:33, 13 January 2007

RubyQuiz #93: A happy number is found using the following process: Take the sum of the squares of its digits, and continue iterating this process until it yields 1, or produces an infinite loop.

The Problem

Solutions