Skip to content

Latest commit

 

History

History
executable file
·
5 lines (4 loc) · 96 Bytes

64.md

File metadata and controls

executable file
·
5 lines (4 loc) · 96 Bytes

64. Minimum Path Sum

It's a typical case of DP. f[i,j] = min(f[i-1,j],j[j-1,i])

Yes accept!