Skip to content

Commit c26f2c0

Browse files
authored
Update 202-happy-number.md
1 parent 9b6caf8 commit c26f2c0

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

en/1-1000/202-happy-number.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ class Solution:
141141

142142
## JavaScript
143143

144-
```javascript
145144
```javascript
146145
var isHappy = function (n, appearedNums) {
147146
appearedNums ||= new Set()
@@ -164,9 +163,8 @@ var isHappy = function (n, appearedNums) {
164163
return isHappy(sum, appearedNums)
165164
};
166165
```
167-
```
168166

169-
## CSharp
167+
## C#
170168

171169
```csharp
172170
public class Solution

0 commit comments

Comments
 (0)