202. Happy Number
https://leetcode.com/problems/happy-number/
Write an algorithm to determine if a number is "happy".
A happy number is a number defined by the following process: Starting with any positive integer, replace the number by the sum of the squares of its digits, and repeat the process until the number equals 1 (where it will stay), or it loops endlessly in a cycle which does not include 1. Those numbers for which this process ends in 1 are happy numbers.
Example:
Thoughts
给定一个数,对每个数字做平方后求和形成新数,继续对数字求平方和,依次类推问能否得到1。按照要求生成新的number, 不收敛意味着之前遇到过,用hash set。时间复杂度O(lgN),证明起来比较复杂。
Code
Analysis
空间复杂度O(n).
Ver.2
检测环想到Floyd算法。
Last updated
Was this helpful?