Personal tools

Haskell Quiz/Happy Numbers

From HaskellWiki

< Haskell Quiz(Difference between revisions)
Jump to: navigation, search
m (remove category)
Current revision (10:33, 13 January 2007) (edit) (undo)
(+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]]

Current revision

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.

1 The Problem

2 Solutions