Skip to content

Commit 777e938

Browse files
committed
Updated unorganized.md.
1 parent fbc8eb1 commit 777e938

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

en/1-1000/583-delete-operation-for-two-strings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ class Solution:
162162
dp[i][j] = dp[i - 1][j - 1]
163163
else:
164164
dp[i][j] = min(dp[i - 1][j], dp[i][j - 1]) + 1
165-
165+
166166
return dp[-1][-1]
167167
```
168168

en/1001-2000/1143-longest-common-subsequence.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ class Solution:
125125
dp[i][j] = dp[i - 1][j - 1] + 1
126126
else:
127127
dp[i][j] = max(dp[i - 1][j], dp[i][j - 1])
128-
128+
129129
return dp[-1][-1]
130130
```
131131

en/3001-4000/unorganized.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,9 @@ The improved way with a queue is commonly more efficient. Relaxing **All Edges**
6262
## Others
6363
* Find all the prime numbers within 1000000.
6464

65+
## Solutions which need a perfection
66+
- 583 https://leetcode.cn/problems/delete-operation-for-two-strings/ would be better use https://leetcode.cn/problems/delete-operation-for-two-strings/submissions/597725071/ as the first option.
67+
6568
## Skipped problems/solutions
6669
- 704 Binary Search Algorithm
6770
- 27 Fast and Slow Pointers
@@ -152,10 +155,14 @@ The improved way with a queue is commonly more efficient. Relaxing **All Edges**
152155
- 62 https://leetcode.cn/problems/unique-paths/
153156
- 63 https://leetcode.cn/problems/unique-paths-ii/
154157
- 343 https://leetcode.cn/problems/integer-break/
158+
- 115 https://leetcode.cn/problems/distinct-subsequences/
155159

156160
#### backpack problems
157161
- 279 https://leetcode.cn/problems/perfect-squares/ can have solution 2
158-
-
162+
163+
#### palindrome issue key: from middle, 2-d, +1 or +2, dp.size = len(s), do it on left-bottom side.
164+
- 647 https://leetcode.cn/problems/palindromic-substrings/ very hard
165+
- 516 https://leetcode.cn/problems/longest-palindromic-subsequence/
159166

160167
### Failed in 2 rounds
161168
- 222 https://leetcode.cn/problems/count-complete-tree-nodes/
@@ -166,5 +173,8 @@ The improved way with a queue is commonly more efficient. Relaxing **All Edges**
166173
- 51 https://leetcode.cn/problems/n-queens/
167174
- 37 https://leetcode.cn/problems/sudoku-solver
168175
- 96 https://leetcode.cn/problems/unique-binary-search-trees/ Finished but slow.
176+
- 115 https://leetcode.cn/problems/distinct-subsequences/
177+
- 647 https://leetcode.cn/problems/palindromic-substrings/ https://leetcode.cn/problems/palindromic-substrings/submissions/597748845/
178+
- 516 https://leetcode.cn/problems/longest-palindromic-subsequence/
169179

170-
2005-02-07 day 4
180+
2005-02-09 day 2

0 commit comments

Comments
 (0)