1 Star 0 Fork 0

表情扭曲 / leetcode

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
lc121.java 486 Bytes
一键复制 编辑 原始数据 按行查看 历史
liu13 提交于 2019-03-13 11:00 . 20190313
package code;
/*
* 121. Best Time to Buy and Sell Stock
* 题意:股票买卖1次,最大利润
* 难度:Easy
* 分类:Arryas, Dynamic Programming
* Tips:lc121, lc309, lc188, lc123, lc714
*/
public class lc121 {
public int maxProfit(int[] prices) {
int min = Integer.MAX_VALUE, res=0;
for(int i=0; i<prices.length; i++){
min = Math.min(min, prices[i]);
res = Math.max(res, prices[i]-min);
}
return res;
}
}
1
https://gitee.com/abfantasy/leetcode.git
git@gitee.com:abfantasy/leetcode.git
abfantasy
leetcode
leetcode
master

搜索帮助