Leetcode 202. 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.

思路:
按照題目要求寫一個函數不斷求出一個數字的next,判斷next是否等于1,不等于1就循環或遞歸繼續求下去。
坑:如果這個數字不是happy num,那么它的next會是一個死循環,因此需要用一個hashset來記錄已經生成過的數字。

public boolean isHappy(int n) {
    HashSet<Integer> set = new HashSet<>();
    while (set.add(n)) {
        int res = 0, tmp = 0;
        while (n > 0) {
            tmp = n % 10;
            res += tmp * tmp;
            n /= 10;
        }
        if (res == 1) {
            return true;
        } else {
            n = res;
        }
    }

    return false;
}
?著作權歸作者所有,轉載或內容合作請聯系作者
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發布,文章內容僅代表作者本人觀點,簡書系信息發布平臺,僅提供信息存儲服務。

推薦閱讀更多精彩內容