Skip to content

Commit cae4c8c

Browse files
committed
feat: 0121.Best Time to Buy and Sell Stock
1 parent afb0ef5 commit cae4c8c

File tree

1 file changed

+3
-3
lines changed
  • Leetcode/0121.Best-Time-to-Buy-and-Sell-Stock

1 file changed

+3
-3
lines changed

Leetcode/0121.Best-Time-to-Buy-and-Sell-Stock/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ description: "0121.Best-Time-to-Buy-and-Sell-Stock"
1010
license: ""
1111
images: []
1212

13-
tags: [LeetCode, Go, Easy, Slide Windows, DP, Best Time to Buy and Sell Stock]
13+
tags: [LeetCode, Go, Easy, Slide Windows, DP, Best Time to Buy and Sell Stock, array, Blind75]
1414
categories: [LeetCode]
1515

1616
featuredImage: ""
@@ -127,7 +127,7 @@ func MaxProfit(prices []int) int {
127127
left, right := 0, 1
128128
maxProfit := 0
129129
for right < len(prices) {
130-
if prices[left] < right {
130+
if prices[left] < prices[right] {
131131
profit := prices[right] - prices[left]
132132
maxProfit = max(maxProfit, profit)
133133
} else {
@@ -139,7 +139,7 @@ func MaxProfit(prices []int) int {
139139
}
140140

141141
// 時間複雜 O(n), 空間複雜 O(1)
142-
// DP
142+
// DP : 最佳解
143143
func MaxProfitDP(prices []int) int {
144144

145145
if len(prices) == 0 {

0 commit comments

Comments
 (0)