File tree 2 files changed +30
-0
lines changed
2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 21
21
| 53| [ Maximum Subarray] [ 053 ] | Array, Dynamic Programming, Divide and Conquer|
22
22
| 58| [ Length of Last Word] [ 058 ] | String|
23
23
| 66| [ Plus One] [ 066 ] | Array, Math|
24
+ | 69| [ Sqrt(x)] [ 069 ] | Binary Search, Math|
24
25
25
26
26
27
## Medium
60
61
[ 053 ] : https://github.com/Blankj/awesome-java-leetcode/blob/master/note/053/README.md
61
62
[ 058 ] : https://github.com/Blankj/awesome-java-leetcode/blob/master/note/058/README.md
62
63
[ 066 ] : https://github.com/Blankj/awesome-java-leetcode/blob/master/note/066/README.md
64
+ [ 069 ] : https://github.com/Blankj/awesome-java-leetcode/blob/master/note/069/README.md
Original file line number Diff line number Diff line change
1
+ # [ Sqrt(x)] [ title ]
2
+
3
+ ## Description
4
+
5
+ Implement ` int sqrt(int x) ` .
6
+
7
+ Compute and return the square root of x.
8
+
9
+ ** Tags:** Binary Search, Math
10
+
11
+
12
+ ## 思路
13
+
14
+
15
+
16
+ ``` java
17
+
18
+ ```
19
+
20
+
21
+ ## 结语
22
+
23
+ 如果你同我一样热爱数据结构、算法、LeetCode,可以关注我GitHub上的LeetCode题解:[ awesome-java-leetcode] [ ajl ]
24
+
25
+
26
+
27
+ [ title ] : https://leetcode.com/problems/sqrtx
28
+ [ ajl ] : https://github.com/Blankj/awesome-java-leetcode
You can’t perform that action at this time.
0 commit comments