摘要: 靠 class Solution { public int maxProfit(int[] prices) { int profit=0; for(int i=1;i<prices.length;i++){ int tmp=prices[i]-prices[i-1]; if(tmp>0) profi 阅读全文
posted @ 2020-06-18 18:13 doyi 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 看了官网给的答案自己写了一遍,一开始还有点没绕清楚,我的妈。。。。 class Solution { public List<List<Integer>> generate(int numRows) { List<List<Integer>> tri=new ArrayList<>(); if(nu 阅读全文
posted @ 2020-06-18 17:59 doyi 阅读(138) 评论(0) 推荐(0) 编辑