2019-02-20 algorithm leetcode -bestTimeToBuyAndSellStockII Leetcode题解之 —— 买卖股票的最佳时机II 思路 参考这里 题解 12345678910111213/** * @param {number[]} prices * @return {number} */var maxProfit = function(prices) { let maxProfit = 0; prices.forEach((v, i, self) => { (v - self[i - 1]) > 0 && (maxProfit += v - self[i - 1]); }); return maxProfit;}; 作者 : zhaoyang Duan 地址 : https://ddzy.github.io/blog/2019/02/20/leetcode-bestTimeToBuyAndSellStockII/ 来源 : https://ddzy.github.io/blog 著作权归作者所有,转载请联系作者获得授权。