From d5e43c37a99c1dfae3bfd6f6c1ca5bfa32e8901e Mon Sep 17 00:00:00 2001 From: Nayeon Date: Tue, 7 Jan 2025 16:29:38 +0900 Subject: [PATCH] chore: Fix code formatting --- best-time-to-buy-and-sell-stock/KwonNayeon.py | 1 + 1 file changed, 1 insertion(+) diff --git a/best-time-to-buy-and-sell-stock/KwonNayeon.py b/best-time-to-buy-and-sell-stock/KwonNayeon.py index 982f19f31..5fc4f4564 100644 --- a/best-time-to-buy-and-sell-stock/KwonNayeon.py +++ b/best-time-to-buy-and-sell-stock/KwonNayeon.py @@ -16,6 +16,7 @@ To Do: - 다른 접근 방법 찾아보기 (Two Pointers, Dynamic Programming) """ + class Solution: def maxProfit(self, prices: List[int]) -> int: min_price = prices[0]