Skip to content

Commit 6d98c92

Browse files
author
Fettes
committed
update problems
1 parent 25704bb commit 6d98c92

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,13 @@
1010
![Hard](https://img.shields.io/badge/Hard-3-red)
1111

1212
## Array
13-
| # | Title | Solution | Difficulty |
14-
|-----|---------------- | --------------- |-------------- |
15-
0442 | [Find All Duplicates in an Array](https://leetcode.com/problems/find-all-duplicates-in-an-array/) | [View](./Array/FindAllDuplicatesInAnArray.cpp) | Medium |||
13+
| # | Title | Solution | Difficulty | Similar Questions |
14+
|-----|---------------- | --------------- |-------------- | ----------------- |
15+
<span id="0001"> 0001 </span> | [Two Sum](https://leetcode.com/problems/two-sum/) | [View](Array/1.two-sum.java) | Easy | [3Sum](#0015),
16+
<span id="0015"> 0015 </span> | [3Sum](https://leetcode.com/problems/3sum/) | [View](Array/15.3-sum.java) | Medium | [Two Sum](#0001), [3Sum Closest](#0016), [3Sum Smaller](#0259)
17+
<span id="0016"> 0016 </span> | [3Sum Closest](https://leetcode.com/problems/3sum-closest/) | [View](Array/16.3-sum-closest.java) | Medium | [3Sum](#0015), [3Sum Smaller](#0259)
18+
<span id="0259"> 0259 </span> | [3Sum Smaller](https://leetcode.com/problems/3sum-smaller/) | [View](Array/259.3-sum-smaller.java) | Medium | [3Sum](#0015), [3Sum Closest](#0016), [Valid Triangle Number](#611), [Two Sum Less Than K](#1099)
19+
<span id="0442"> 0442 </span> | [Find All Duplicates in an Array](https://leetcode.com/problems/find-all-duplicates-in-an-array/) | [View](./Array/FindAllDuplicatesInAnArray.cpp) | Medium |||
1620
1437 | [Check If All 1's Are at Least Length K Places Away](https://leetcode.com/problems/check-if-all-1s-are-at-least-length-k-places-away/) | [View](./Array/CheckIfAll1sAreAtLeastLengthKPlacesAway.cpp) | Medium |
1721
0706 | [Design Hash Map](https://leetcode.com/problems/design-hashmap/) | [View](./Array/DesignHashMap.cpp) | Easy |||
1822
0705 | [Design Hash Set](https://leetcode.com/problems/design-hashset/) | [View](./Array/DesignHashSet.cpp) | Easy |||

0 commit comments

Comments
 (0)