Haskell Quiz/Happy Numbers

From HaskellWiki
< Haskell Quiz
Revision as of 04:47, 27 October 2006 by Dolio (talk | contribs) (Page added)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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