Skip to content

Commit 3b8d686

Browse files
committed
fix: 줄바꿈 이슈 해결
1 parent 716304c commit 3b8d686

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,5 @@ def maxProfit(self, prices: List[int]) -> int:
1919
if ma < prices[i]:
2020
ma = prices[i]
2121
answ = max(answ, ma-mi)
22-
return answ
22+
return answ
23+

group-anagrams/ZetBe.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ def groupAnagrams(self, strs: List[str]) -> List[List[str]]:
1616
if k not in d:
1717
d[k] = []
1818
d[k].append(i)
19-
return list(d.values())
19+
return list(d.values())
20+
21+

implement-trie-prefix-tree/ZetBe.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,5 @@ def startsWith(self, prefix: str) -> bool:
3030
# obj = Trie()
3131
# obj.insert(word)
3232
# param_2 = obj.search(word)
33-
# param_3 = obj.startsWith(prefix)
33+
# param_3 = obj.startsWith(prefix)
34+

0 commit comments

Comments
 (0)