houbb.github.io
houbb.github.io copied to clipboard
Tiny update about a typo
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++) {