Lintcode 150.买卖股票的最佳时机 II

Lintcode 150.买卖股票的最佳时机 II

------------------------------------------------------------

卧槽竟然连题意都没看懂,百度了才明白题目在说啥....我好方啊....o(╯□╰)o

AC代码:

class Solution {
/**
* @param prices: Given an integer array
* @return: Maximum profit
*/
public int maxProfit(int[] prices) {
int res=0;
for(int i=1;i<prices.length;i++){
int t=prices[i]-prices[i-1];
if(t>0) res+=t;
}
return res;
}
};

题目来源: http://www.lintcode.com/zh-cn/problem/best-time-to-buy-and-sell-stock-ii/#

上一篇:后台管理-基于 Bootstrap 开发的网站后台管理面板


下一篇:Java企业微信开发_11_异常:java.net.UnknownHostException: qyapi.weixin.qq.com