From 7c3705102dfe809cd71ddda9136223a2f7974d67 Mon Sep 17 00:00:00 2001 From: ShusenTang Date: Tue, 5 Nov 2019 16:32:01 +0800 Subject: [PATCH] add 714 --- README.md | 1 + ...4. Best Time to Buy and Sell Stock with Transaction Fee.md | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 solutions/714. Best Time to Buy and Sell Stock with Transaction Fee.md diff --git a/README.md b/README.md index d52104f..8af6590 100644 --- a/README.md +++ b/README.md @@ -234,3 +234,4 @@ My LeetCode solutions with Chinese explanation. 我的LeetCode中文题解。 | 643 |[Maximum Average Subarray I](https://leetcode.com/problems/maximum-average-subarray-i)|[C++](https://github.com/ShusenTang/LeetCode/blob/master/solutions/643.%20Maximum%20Average%20Subarray%20I.md)|Easy| | | 661 |[Image Smoother](https://leetcode.com/problems/image-smoother)|[C++](https://github.com/ShusenTang/LeetCode/blob/master/solutions/661.%20Image%20Smoother.md)|Easy| | | 665 |[Non-decreasing Array](https://leetcode.com/problems/non-decreasing-array)|[C++](https://github.com/ShusenTang/LeetCode/blob/master/solutions/665.%20Non-decreasing%20Array.md)|Easy| | +| 714 |[Best Time to Buy and Sell Stock with Transaction Fee](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-transaction-fee/)|[C++](https://github.com/ShusenTang/LeetCode/blob/master/solutions/714.%20Best%20Time%20to%20Buy%20and%20Sell%20Stock%20with%20Transaction%20Fee.md)|Medium| | \ No newline at end of file diff --git a/solutions/714. Best Time to Buy and Sell Stock with Transaction Fee.md b/solutions/714. Best Time to Buy and Sell Stock with Transaction Fee.md new file mode 100644 index 0000000..d15bfe6 --- /dev/null +++ b/solutions/714. Best Time to Buy and Sell Stock with Transaction Fee.md @@ -0,0 +1,4 @@ +# [714. Best Time to Buy and Sell Stock with Transaction Fee](https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-transaction-fee/) + + +带交易费用的股票买卖问题,属于LeetCode六道股票买卖题目之一,见我的博客文章[动态规划之股票买卖系列](https://shusentang.github.io/2019/11/03/Buy-and-Sell-Stock/)。 \ No newline at end of file