8000 auto commit · githubclj/InterviewNotes@0052dba · GitHub
[go: up one dir, main page]

Skip to content

Commit 0052dba

Browse files
committed
auto commit
1 parent c855c2b commit 0052dba

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

notes/Leetcode 题解.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2002,8 +2002,6 @@ public int wiggleMaxLength(int[] nums) {
20022002

20032003
<div align="center"><img src="https://latex.codecogs.com/gif.latex?dp[i][j]=\left\{\begin{array}{rcl}dp[i-1][j-1]&&{S1_i==S2_j}\\max(dp[i-1][j],dp[i][j-1])&&{S1_i<>S2_j}\end{array}\right."/></div> <br>
20042004

2005-
![](https://github.com/CyC2018/InterviewNotes/blob/master/pics//1dc481cc-99f6-4fa8-8f68-fbd563995bf5.png)
2006-
20072005
对于长度为 N 的序列 S<sub>1</sub> 和 长度为 M 的序列 S<sub>2</sub>,dp[N][M] 就是序列 S<sub>1</sub> 和序列 S<sub>2</sub> 的最长公共子序列长度。
20082006

20092007
与最长递增子序列相比,最长公共子序列有以下不同点:

0 commit comments

Comments
 (0)
0