Haskell Quiz/Happy Numbers: Difference between revisions

From HaskellWiki
Dolio (talk | contribs)
m category
Dolio (talk | contribs)
m remove category
Line 1: Line 1:
[[Category:Code]]
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.
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.



Revision as of 03:51, 31 October 2006

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