From 15ec33d52e1826a47e15dd358e086afade976a9d Mon Sep 17 00:00:00 2001 From: Jarrian Gojar Date: Thu, 19 Oct 2023 17:09:19 +0800 Subject: [PATCH] Rename solution.cpp to solution.cpp --- .../solution.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Medium/{122. Best Time to Buy and Sell Stock => 122. Best Time to Buy and Sell Stock II}/solution.cpp (99%) diff --git a/Medium/122. Best Time to Buy and Sell Stock/solution.cpp b/Medium/122. Best Time to Buy and Sell Stock II/solution.cpp similarity index 99% rename from Medium/122. Best Time to Buy and Sell Stock/solution.cpp rename to Medium/122. Best Time to Buy and Sell Stock II/solution.cpp index 77f72f3..d4ec4ab 100644 --- a/Medium/122. Best Time to Buy and Sell Stock/solution.cpp +++ b/Medium/122. Best Time to Buy and Sell Stock II/solution.cpp @@ -11,4 +11,4 @@ class Solution { return maxProfit; } -}; \ No newline at end of file +};