Skip to content

Commit 58e908a

Browse files
committed
feat: add rust solution to lc problem: No.0202
No.0202.Happy Number
1 parent e362c77 commit 58e908a

File tree

3 files changed

+76
-0
lines changed

3 files changed

+76
-0
lines changed

solution/0200-0299/0202.Happy Number/README.md

+31
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@
5151

5252
<!-- 这里可写通用的实现逻辑 -->
5353

54+
简单模拟,有可能进入死循环导致无法停止,有几种方式解决:
55+
56+
- 哈希表:转换过程不会重复出现同一个数字。
57+
- 限制转换次数:在一定次数转换后还未成功变为 1,那么就断言此数不是快乐数。
58+
- 快慢指针:与判断链表是否存在环原理一致。
59+
5460
<!-- tabs:start -->
5561

5662
### **Python3**
@@ -101,6 +107,31 @@ class Solution {
101107
}
102108
```
103109

110+
### **Rust**
111+
112+
```rust
113+
impl Solution {
114+
fn get_next(mut n: i32) -> i32 {
115+
let mut res = 0;
116+
while n != 0 {
117+
res += (n % 10).pow(2);
118+
n /= 10;
119+
}
120+
res
121+
}
122+
123+
pub fn is_happy(n: i32) -> bool {
124+
let mut slow = n;
125+
let mut fast = Self::get_next(n);
126+
while slow != fast {
127+
slow = Self::get_next(slow);
128+
fast = Self::get_next(Self::get_next(fast));
129+
}
130+
slow == 1
131+
}
132+
}
133+
```
134+
104135
### **...**
105136

106137
```

solution/0200-0299/0202.Happy Number/README_EN.md

+25
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,31 @@ class Solution {
9191
}
9292
```
9393

94+
### **Rust**
95+
96+
```rust
97+
impl Solution {
98+
fn get_next(mut n: i32) -> i32 {
99+
let mut res = 0;
100+
while n != 0 {
101+
res += (n % 10).pow(2);
102+
n /= 10;
103+
}
104+
res
105+
}
106+
107+
pub fn is_happy(n: i32) -> bool {
108+
let mut slow = n;
109+
let mut fast = Self::get_next(n);
110+
while slow != fast {
111+
slow = Self::get_next(slow);
112+
fast = Self::get_next(Self::get_next(fast));
113+
}
114+
slow == 1
115+
}
116+
}
117+
```
118+
94119
### **...**
95120

96121
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
impl Solution {
2+
fn get_next(mut n: i32) -> i32 {
3+
let mut res = 0;
4+
while n != 0 {
5+
res += (n % 10).pow(2);
6+
n /= 10;
7+
}
8+
res
9+
}
10+
11+
pub fn is_happy(n: i32) -> bool {
12+
let mut slow = n;
13+
let mut fast = Self::get_next(n);
14+
while slow != fast {
15+
slow = Self::get_next(slow);
16+
fast = Self::get_next(Self::get_next(fast));
17+
}
18+
slow == 1
19+
}
20+
}

0 commit comments

Comments
 (0)