|
26 | 26 | </p>
|
27 | 27 | <br>
|
28 | 28 |
|
29 | | - |
30 | | -<!---Content---> |
31 | | -## Index |
32 | | - |
33 | | -* [Linked List](https://github.com/yuzhoujr/LeetCode#linked-list) |
34 | | - |
35 | | - |
36 | | - |
37 | | - |
38 | | - |
39 | | - |
40 | | - |
41 | | - |
42 | | - |
43 | 29 | ## Array Easy
|
44 | | -| # | Title | Solution | Time | Space | Video| |
45 | | -| --- | ----- | -------- | ---- | ----- | ---- | |
46 | | -|1| [Two Sum](https://leetcode.com/problems/two-sum/) | [Python](./array/1.py) | _O(n)_| _O(n)_ |[:tv:](https://www.youtube.com/watch?v=uajne4jeGaA)| |
47 | | - |
48 | | - |
49 | | - |
| 30 | +|624| [Maximum Distance in Arrays](https://leetcode.com/problems/maximum-distance-in-arrays/description/) | [Python](./array/624.py) | _O(n)_| _O(1)_ || |
50 | 31 |
|
51 | 32 |
|
52 | 33 | ## Array Medium
|
|
55 | 36 | |3| [Longest Substring Without Repeating Characters](https://leetcode.com/problems/longest-substring-without-repeating-characters/#/solutions) | [Python](./array/3.py) | _O(n)_| _O(n)_ ||
|
56 | 37 | |463| [Island Perimeter](https://leetcode.com/problems/island-perimeter/#/description) | [Python](./array/463.py) | _O(n^2)_| _O(1)_||
|
57 | 38 |
|
| 39 | +## Hash Table Easy |
| 40 | +| # | Title | Solution | Time | Space | Video| |
| 41 | +| --- | ----- | -------- | ---- | ----- | ---- | |
| 42 | +|1| [Two Sum](https://leetcode.com/problems/two-sum/) | [Python](./array/1.py) | _O(n)_| _O(n)_ |[:tv:](https://www.youtube.com/watch?v=uajne4jeGaA)| |
| 43 | +|242| [Valid Anagram](https://leetcode.com/problems/valid-anagram/description/) | [Python](./array/242.py) | _O(n)_| _O(n)_ || |
| 44 | + |
| 45 | + |
58 | 46 |
|
59 | 47 |
|
60 | 48 |
|
61 | 49 |
|
62 | | -## Linked List |
63 | | -[Overview](http://www.cnblogs.com/Raising-Sun/p/5970662.html#3534606) |
64 | 50 |
|
65 | 51 | ## Linked List Easy
|
66 | 52 | | # | Title | Solution | Time | Space | Video|
|
|
0 commit comments