Skip to content

Commit f4169b1

Browse files
authored
Update 23. x 的平方根.md
1 parent fce5aa6 commit f4169b1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

23. x 的平方根.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
猜的数平方以后小了,可能猜的数就是,也可能不是。
99
```
1010

11-
···
11+
```
1212
class Solution:
1313
def mySqrt(self, x: int) -> int:
1414
left = 0
@@ -24,4 +24,4 @@ class Solution:
2424
else:
2525
return mid
2626
return res
27-
···
27+
```

0 commit comments

Comments
 (0)