Last week, I bought a LAUNCH X431 idiag from autonumen.com,the customer sercie did help me a lot, because I registered but I forgot my user name, so I ...
分类:
其他好文 时间:
2020-04-16 19:34:58
阅读次数:
84
LeetCode上的卖股票题大概有6道,建议大家去看一下英文版 LeetCode上关于这类题目的讲解:https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-transaction-fee/discuss/108870/M ...
分类:
编程语言 时间:
2020-04-16 00:47:04
阅读次数:
88
没能做出来,参考别人的: 1 from heapq import heapify, heappush, heappop 2 3 class Solution: 4 def findItinerary(self, tickets: List[List[str]]) -> List[str]: 5 gr ...
分类:
其他好文 时间:
2020-04-08 20:41:03
阅读次数:
62
"https://leetcode.com/problems/best time to buy and sell stock/" 给定一个数组,其中数组的第 i 个元素表示第 i 天的股票价格,你可以选择在其中一天买股票,然后再后面的某一天卖掉股票,求最大收益。(股票必须要先买才能卖) 这里只能买一 ...
分类:
其他好文 时间:
2020-04-06 00:26:55
阅读次数:
84
"https://leetcode.com/problems/best time to buy and sell stock ii/" 给定一个数组,其中数组的第 i 个元素表示第 i 天的股票价格,你可以选择在其中一天买股票,然后再后面的某一天卖掉股票,求最大收益。(股票必须要先买才能卖) 这里可 ...
分类:
其他好文 时间:
2020-04-06 00:10:03
阅读次数:
82
此博客链接:https://www.cnblogs.com/ping2yingshi/p/12637178.html 买卖股票的最佳时机(13min) 题目链接:https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock/ 给定一 ...
分类:
其他好文 时间:
2020-04-05 15:44:51
阅读次数:
72
一、NoSuchMethodError 因为对服务方进行了修改,没有进行install操作,导致消费方无法找到该方法。 二、Required String parameter 'id' is not present 前端使用result风格的url方式传递参数时: <a href="buy/${de ...
分类:
其他好文 时间:
2020-04-04 22:40:23
阅读次数:
77
1 class Solution 2 { 3 public: 4 int maxProfit(vector<int>& prices) 5 { 6 if(prices.empty()) return 0; 7 int n = prices.size(); 8 int buy = prices[0]; ...
分类:
其他好文 时间:
2020-04-01 19:41:00
阅读次数:
61
解决方法: 加个require()就可以了 <img :src="require('../xxx/images/'+imgsrc+'.png')"/> export default { name: 'cart-buy-button', data () { return { imgsrc: "实际的动 ...
分类:
其他好文 时间:
2020-03-22 10:27:07
阅读次数:
157
题目链接: https://leetcode-cn.com/problems/best-time-to-buy-and-sell-stock/submissions/ 思路:使用dp,保存上一步的状态,然后递推 状态转移方程:last = Math.max(0, last + prices[i+1] ...
分类:
编程语言 时间:
2020-03-20 13:02:12
阅读次数:
86