Skip to content

Commit ae66bc7

Browse files
committed
feat: add 069
1 parent 5dc451f commit ae66bc7

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
|53|[Maximum Subarray][053]|Array, Dynamic Programming, Divide and Conquer|
2222
|58|[Length of Last Word][058]|String|
2323
|66|[Plus One][066]|Array, Math|
24+
|69|[Sqrt(x)][069]|Binary Search, Math|
2425

2526

2627
## Medium
@@ -60,3 +61,4 @@
6061
[053]: https://github.com/Blankj/awesome-java-leetcode/blob/master/note/053/README.md
6162
[058]: https://github.com/Blankj/awesome-java-leetcode/blob/master/note/058/README.md
6263
[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

note/069/README.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
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

0 commit comments

Comments
 (0)