-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path202.快乐数.py
66 lines (63 loc) · 1.1 KB
/
202.快乐数.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#
# @lc app=leetcode.cn id=202 lang=python3
#
# [202] 快乐数
#
# https://leetcode.cn/problems/happy-number/description/
#
# algorithms
# Easy (62.78%)
# Likes: 933
# Dislikes: 0
# Total Accepted: 250K
# Total Submissions: 398.1K
# Testcase Example: '19'
#
# 编写一个算法来判断一个数 n 是不是快乐数。
#
# 「快乐数」 定义为:
#
#
# 对于一个正整数,每一次将该数替换为它每个位置上的数字的平方和。
# 然后重复这个过程直到这个数变为 1,也可能是 无限循环 但始终变不到 1。
# 如果这个过程 结果为 1,那么这个数就是快乐数。
#
#
# 如果 n 是 快乐数 就返回 true ;不是,则返回 false 。
#
#
#
# 示例 1:
#
#
# 输入:n = 19
# 输出:true
# 解释:
# 1^2 + 9^2 = 82
# 8^2 + 2^2 = 68
# 6^2 + 8^2 = 100
# 1^2 + 0^2 + 0^2 = 1
#
#
# 示例 2:
#
#
# 输入:n = 2
# 输出:false
#
#
#
#
# 提示:
#
#
# 1 <= n <= 2^31 - 1
#
#
#
# @lc code=start
class Solution:
def isHappy(self, n: int) -> bool:
s = str(n)
return not n
# @lc code=end