soulmachine / leetcode

LeetCode题解,151道题完整版。
BSD 3-Clause "New" or "Revised" License
11.27k stars 3.43k forks source link

i just needs to be from 0 to n-1 #87

Open fvdcx opened 8 years ago

fvdcx commented 8 years ago

for (int i = 0; i < n; ++i) max_profit = max(max_profit, f[i] + g[i]); I think i would better range from 0 to n-1 [0, n-1) Because the case i = 0 and the case i = n -1 are the same.