We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f06771 commit c855c2bCopy full SHA for c855c2b
notes/Leetcode 题解.md
@@ -2000,13 +2000,7 @@ public int wiggleMaxLength(int[] nums) {
2000
2001
综上,最长公共子系列的状态转移方程为:
2002
2003
-$$
2004
-dp[i][j]=\left\{
2005
-\begin{array}{rcl}
2006
-dp[i-1][j-1] && { S1_i==S2_j }\\
2007
-max(dp[i-1][j], dp[i][j-1]) &&{ S1_i <> S2_j }
2008
-\end{array} \right.
2009
+<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>
2010
2011

2012
0 commit comments