Leetcode#202. Happy Number
Problem
Write an algorithm to determine if a number n
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.
- 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.
Return true
if n
is a happy number, and false
if not.
Example 1:
1 | Input: n = 19 |
Example 2:
1 | Input: n = 2 |
Constraints:
1 <= n <= 2^31 - 1
Solve
沒甚麼難度的一題
要想辦法將非happy number的挑出來,所以做了一個memo,當經過迴圈運算後,數字又變成memo裏頭數字時,代表不可能是happy number
法1
1 | class Solution: |
memo 可以改成 set(),不用用dict
運算其實可以不用轉變字串
用除於10的餘數來做也是可以
但這邊就不寫了
法2
Two pointer!!
一開始想不到可以用這樣的方法
two pointer 這邊建立兩個pointer 一個快 一個慢
當兩個pointer 同樣時停止
1 | class Solution: |
本部落格所有文章除特別聲明外,均採用 CC BY-NC-SA 4.0 許可協議。轉載請註明來自 Imisky!
評論