Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e9a906b

Browse files
committed
Merge branch 'master' of github.com:tujietg/leetcode
2 parents 65625f0 + 58bcb6b commit e9a906b

File tree

1 file changed

+19
-18
lines changed

1 file changed

+19
-18
lines changed

README.md

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -17,52 +17,53 @@ I really **enjoy** it, I will always update it.
1717
- [DP](#6)
1818

1919
<h2 id = 0>leetcode</h3>
20-
2120
<h3 id = 1>Array</h4>
2221

22+
2323
| Problem | Solution | Time | Difficulty | Note |
2424
| ------------------------------------------------------------ | ------------------------------------------------------------ | ---- | ---------- | --------------- |
25-
| [26.Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array) | [java](https://github.com/tujietg/leetcode/blob/master/Array/No26.java) | O(N) | Easy | |
26-
| [27.Remove Element](https://leetcode.com/problems/remove-element) | [java](https://github.com/tujietg/leetcode/blob/master/Array/No27.java) | O(N) | Easy | |
27-
| [35.Search Insert Position](https://leetcode.com/problems/search-insert-position) | [java](https://github.com/tujietg/leetcode/blob/master/Array/No35.java) | O(N) | Easy | |
28-
| [53.Maximum Subarray](https://leetcode.com/problems/maximum-subarray) | [java](https://github.com/tujietg/leetcode/blob/master/Array/No53.java) | | Easy | |
29-
| [66.Plus One](https://leetcode.com/problems/plus-one) | [java](https://github.com/tujietg/leetcode/blob/master/Array/No66.java) | O(N) | Easy | |
30-
| [1.Two Sum](https://leetcode.com/problems/two-sum) | [java](https://github.com/tujietg/leetcode/blob/master/Array/No1.java) | | | |
31-
| [14.Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix) | [java](https://github.com/tujietg/leetcode/blob/master/Array/No14.java) | O(N) | Easy | 😩第一个元素范围 |
25+
| [26.Remove Duplicates from Sorted Array](https://leetcode.com/problems/remove-duplicates-from-sorted-array) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/Array/No26.java) | O(N) | Easy | |
26+
| [27.Remove Element](https://leetcode.com/problems/remove-element) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/Array/No27.java) | O(N) | Easy | |
27+
| [35.Search Insert Position](https://leetcode.com/problems/search-insert-position) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/Array/No35.java) | O(N) | Easy | |
28+
| [53.Maximum Subarray](https://leetcode.com/problems/maximum-subarray) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/Array/No53.java) | | Easy | |
29+
| [66.Plus One](https://leetcode.com/problems/plus-one) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/Array/No66.java) | O(N) | Easy | |
30+
| [1.Two Sum](https://leetcode.com/problems/two-sum) | [java](https://github.com/tujietg/Algorithm/blob/master/Array/No1.java) | | | |
31+
| [14.Longest Common Prefix](https://leetcode.com/problems/longest-common-prefix) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/Array/No14.java) | O(N) | Easy | 😩第一个元素范围 |
3232

3333
<h3 id = 2>LinkedList</h4>
3434

3535
| Problem | Solution | Time | Difficulty | Note |
3636
| ------------------------------------------------------------ | ------------------------------------------------------------ | ---- | ---------- | ---- |
37-
| [21.Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists) | [java](https://github.com/tujietg/leetcode/blob/master/LinkedList/No21.java) | O(N) | Easy | |
37+
| [21.Merge Two Sorted Lists](https://leetcode.com/problems/merge-two-sorted-lists) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/LinkedList/No21.java) | O(N) | Easy | |
3838

3939
<h3 id = 3>String</h4>
4040

41-
| Problem | Solution | Time | Difficulty | Note |
42-
| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------ | ---------- | ---------------------------- |
43-
| [28.Implement strStr()](https://leetcode.com/problems/implement-strstr) | [java](https://github.com/tujietg/leetcode/blob/master/String/No28.java) | O(N)\|\|O(1) | Easy | |
44-
| [58.Length of Last Word](https://leetcode.com/problems/length-of-last-word) | [java](https://github.com/tujietg/leetcode/blob/master/String/No58.java) | | Easy | |
45-
| [20.Valid Parentheses](https://leetcode.com/problems/valid-parentheses) | [java](https://github.com/tujietg/leetcode/blob/master/String/No20.java) | O(N) | Easy | 🤣最终的返回为stack.isEmpty() |
41+
| Problem | Solution | Time | Difficulty | Note |
42+
| ------------------------------------------------------------ | ------------------------------------------------------------ | ------------ | ---------- | ----------------------------------- |
43+
| [28.Implement strStr()](https://leetcode.com/problems/implement-strstr) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/String/No28.java) | O(N)\|\|O(1) | Easy | |
44+
| [58.Length of Last Word](https://leetcode.com/problems/length-of-last-word) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/String/No58.java) | | Easy | |
45+
| [20.Valid Parentheses](https://leetcode.com/problems/valid-parentheses) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/String/No20.java) | O(N) | Easy | 🤣最终的返回为stack.isEmpty() |
46+
| [125.Valid Palindrome](https://leetcode.com/problems/valid-palindrome) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/String/No125.java) | | Easy | API:isLetterOrDigit() toLowerCase() |
4647

4748
<h3 id = 4>Tree</h3>
4849

4950
| Problem | Solution | Time | Difficulty | Note |
5051
| -------------------------------------------------------- | ------------------------------------------------------------ | ---- | ---------- | ---- |
51-
| [100.Same Tree](https://leetcode.com/problems/same-tree) | [java](https://github.com/tujietg/leetcode/blob/master/Tree/No100.java) | O(N) | Easy | |
52+
| [100.Same Tree](https://leetcode.com/problems/same-tree) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/Tree/No100.java) | O(N) | Easy | |
5253
| | | | | |
5354

5455
<h3 id = 5>Math</h3>
5556

5657
| Problem | Solution | Time | Difficulty | Note |
5758
| ------------------------------------------------------------ | ------------------------------------------------------------ | ---- | ---------- | ---- |
58-
| [7.Reverse Integer](https://leetcode.com/problems/reverse-integer) | [java](https://github.com/tujietg/leetcode/blob/master/math/No07.java) | | Easy | |
59-
| [9.Palindrome Number](https://leetcode.com/problems/palindrome-number) | [java](https://github.com/tujietg/leetcode/blob/master/math/No09.java) | O(N) | Easy | |
59+
| [7.Reverse Integer](https://leetcode.com/problems/reverse-integer) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/math/No07.java) | | Easy | |
60+
| [9.Palindrome Number](https://leetcode.com/problems/palindrome-number) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/math/No09.java) | O(N) | Easy | |
6061

6162
<h3 id="6">DP</h3>
6263

6364
| Problem | Solution | Time | Difficulty | Note |
6465
| ------------------------------------------------------------ | ------------------------------------------------------------ | ---- | ---------- | ------------------------------------------------------------ |
65-
| [70.Climbing Stairs](https://leetcode.com/problems/climbing-stairs) | [java](https://github.com/tujietg/leetcode/blob/master/DP/No70.java) | O(N) | Easy | [DP初步讲解](https://leetcode.com/articles/climbing-stairs/) & [讲解](https://leetcode.com/problems/climbing-stairs/discuss/163347/Python-3000DP-or-tm) |
66+
| [70.Climbing Stairs](https://leetcode.com/problems/climbing-stairs) | [java](https://github.com/tujietg/Algorithm/blob/master/leetcode/DP/No70.java) | O(N) | Easy | [DP初步讲解](https://leetcode.com/articles/climbing-stairs/) & [讲解](https://leetcode.com/problems/climbing-stairs/discuss/163347/Python-3000DP-or-tm) |
6667

6768

6869

0 commit comments

Comments
 (0)