Happy Number

Try to solve the Happy Number problem.

Statement

Write an algorithm to determine if a number nn is a happy number.

We use the following process to check if a given number is a happy number:

  • Starting with the given number nn, replace the number with the sum of the squares of its digits.
  • Repeat the process until:
    • The number equals 11, which will depict that the given number nn is a happy number.
    • The number enters a cycle, which will depict that the given number nn is not a happy number.

Return TRUE if nn is a happy number, and FALSE if not.

Constraints

  • 1≤1 \leq nn ≤231−1\leq 2^{31} - 1

Create a free account to view this lesson.

By signing up, you agree to Educative's Terms of Service and Privacy Policy