Skip to content

Commit 5c57ca6

Browse files
author
Openset
committed
Update: problems
1 parent 408497d commit 5c57ca6

File tree

456 files changed

+887
-881
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

456 files changed

+887
-881
lines changed

problems/1-bit-and-2-bit-characters/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ The only way to decode it is two-bit character and two-bit character. So the las
3737
</p>
3838

3939
### Similar Questions
40-
1. [Gray Code](https://github.com/openset/leetcode/tree/master/solution/gray-code) (Medium)
40+
1. [Gray Code](https://github.com/openset/leetcode/tree/master/problems/gray-code) (Medium)

problems/2-keys-keyboard/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ In step 3, we use <b>Paste</b> operation to get 'AAA'.
3939
</p>
4040

4141
### Similar Questions
42-
1. [4 Keys Keyboard](https://github.com/openset/leetcode/tree/master/solution/4-keys-keyboard) (Medium)
42+
1. [4 Keys Keyboard](https://github.com/openset/leetcode/tree/master/problems/4-keys-keyboard) (Medium)

problems/3sum-closest/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ The sum that is closest to the target is 2. (-1 + 2 + 1 = 2).
1919

2020

2121
### Similar Questions
22-
1. [3Sum](https://github.com/openset/leetcode/tree/master/solution/3sum) (Medium)
23-
1. [3Sum Smaller](https://github.com/openset/leetcode/tree/master/solution/3sum-smaller) (Medium)
22+
1. [3Sum](https://github.com/openset/leetcode/tree/master/problems/3sum) (Medium)
23+
1. [3Sum Smaller](https://github.com/openset/leetcode/tree/master/problems/3sum-smaller) (Medium)

problems/3sum/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ A solution set is:
2727

2828

2929
### Similar Questions
30-
1. [Two Sum](https://github.com/openset/leetcode/tree/master/solution/two-sum) (Easy)
31-
1. [3Sum Closest](https://github.com/openset/leetcode/tree/master/solution/3sum-closest) (Medium)
32-
1. [4Sum](https://github.com/openset/leetcode/tree/master/solution/4sum) (Medium)
33-
1. [3Sum Smaller](https://github.com/openset/leetcode/tree/master/solution/3sum-smaller) (Medium)
30+
1. [Two Sum](https://github.com/openset/leetcode/tree/master/problems/two-sum) (Easy)
31+
1. [3Sum Closest](https://github.com/openset/leetcode/tree/master/problems/3sum-closest) (Medium)
32+
1. [4Sum](https://github.com/openset/leetcode/tree/master/problems/4sum) (Medium)
33+
1. [3Sum Smaller](https://github.com/openset/leetcode/tree/master/problems/3sum-smaller) (Medium)

problems/4sum-ii/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ The two tuples are:
3030
</p>
3131

3232
### Similar Questions
33-
1. [4Sum](https://github.com/openset/leetcode/tree/master/solution/4sum) (Medium)
33+
1. [4Sum](https://github.com/openset/leetcode/tree/master/problems/4sum) (Medium)

problems/4sum/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ A solution set is:
2828

2929

3030
### Similar Questions
31-
1. [Two Sum](https://github.com/openset/leetcode/tree/master/solution/two-sum) (Easy)
32-
1. [3Sum](https://github.com/openset/leetcode/tree/master/solution/3sum) (Medium)
33-
1. [4Sum II](https://github.com/openset/leetcode/tree/master/solution/4sum-ii) (Medium)
31+
1. [Two Sum](https://github.com/openset/leetcode/tree/master/problems/two-sum) (Easy)
32+
1. [3Sum](https://github.com/openset/leetcode/tree/master/problems/3sum) (Medium)
33+
1. [4Sum II](https://github.com/openset/leetcode/tree/master/problems/4sum-ii) (Medium)

problems/accounts-merge/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ We could return these lists in any order, for example the answer [['Mary', 'mary
3333
</p>
3434

3535
### Similar Questions
36-
1. [Redundant Connection](https://github.com/openset/leetcode/tree/master/solution/redundant-connection) (Medium)
37-
1. [Sentence Similarity](https://github.com/openset/leetcode/tree/master/solution/sentence-similarity) (Easy)
38-
1. [Sentence Similarity II](https://github.com/openset/leetcode/tree/master/solution/sentence-similarity-ii) (Medium)
36+
1. [Redundant Connection](https://github.com/openset/leetcode/tree/master/problems/redundant-connection) (Medium)
37+
1. [Sentence Similarity](https://github.com/openset/leetcode/tree/master/problems/sentence-similarity) (Easy)
38+
1. [Sentence Similarity II](https://github.com/openset/leetcode/tree/master/problems/sentence-similarity-ii) (Medium)

problems/add-and-search-word-data-structure-design/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ You may assume that all words are consist of lowercase letters <code>a-z</code>.
3333

3434

3535
### Similar Questions
36-
1. [Implement Trie (Prefix Tree)](https://github.com/openset/leetcode/tree/master/solution/implement-trie-prefix-tree) (Medium)
37-
1. [Prefix and Suffix Search](https://github.com/openset/leetcode/tree/master/solution/prefix-and-suffix-search) (Hard)
36+
1. [Implement Trie (Prefix Tree)](https://github.com/openset/leetcode/tree/master/problems/implement-trie-prefix-tree) (Medium)
37+
1. [Prefix and Suffix Search](https://github.com/openset/leetcode/tree/master/problems/prefix-and-suffix-search) (Hard)

problems/add-binary/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525

2626

2727
### Similar Questions
28-
1. [Add Two Numbers](https://github.com/openset/leetcode/tree/master/solution/add-two-numbers) (Medium)
29-
1. [Multiply Strings](https://github.com/openset/leetcode/tree/master/solution/multiply-strings) (Medium)
30-
1. [Plus One](https://github.com/openset/leetcode/tree/master/solution/plus-one) (Easy)
28+
1. [Add Two Numbers](https://github.com/openset/leetcode/tree/master/problems/add-two-numbers) (Medium)
29+
1. [Multiply Strings](https://github.com/openset/leetcode/tree/master/problems/multiply-strings) (Medium)
30+
1. [Plus One](https://github.com/openset/leetcode/tree/master/problems/plus-one) (Easy)

problems/add-digits/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
Could you do it without any loop/recursion in O(1) runtime?</p>
2323

2424
### Similar Questions
25-
1. [Happy Number](https://github.com/openset/leetcode/tree/master/solution/happy-number) (Easy)
25+
1. [Happy Number](https://github.com/openset/leetcode/tree/master/problems/happy-number) (Easy)

0 commit comments

Comments
 (0)