houbb.github.io icon indicating copy to clipboard operation
houbb.github.io copied to clipboard

Tiny update about a typo

Open tim-hub opened this issue 3 years ago • 0 comments

https://houbb.github.io/2020/01/23/data-struct-learn-07-base-dp#%E5%8A%A8%E6%80%81%E8%A7%84%E5%88%92%E8%A7%A3%E6%B3%95

Hi @houbb ,

In the post above, in the 动态规划解法

I think there is one typo.

for(int j = 1; j <= i; j++>) {

I assume it should be

for(int j = 1; j <= i; j++) {

tim-hub avatar Feb 16 '22 03:02 tim-hub