Skip to content

Commit cf36d77

Browse files
committed
line indent
1 parent 7cb90cc commit cf36d77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

best-time-to-buy-and-sell-stock/changhyumm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ def maxProfit(self, prices: List[int]) -> int:
66
min_price = min(prices[i], min_price)
77
profit = prices[i+1] - min_price
88
max_profit = max(profit, max_profit)
9-
return max_profit
9+
return max_profit

0 commit comments

Comments
 (0)