Skip to content

Commit a13085f

Browse files
author
haoyang.shi
committed
fix
1 parent 41dccf8 commit a13085f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

offer/FindGreatestSumOfSubArray.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212

1313
$$
1414
max(f(i))=\begin{cases}
15-
num[i] & i=0或者f(i)<0\\
16-
num[i]+f(i) & i\ne0并且f(i)>0
15+
num[i] & i=0 || f(i)<0\\
16+
num[i]+f(i) & i\ne0 && f(i)>0
1717
\end{cases}
1818
$$
1919

0 commit comments

Comments
 (0)