Skip to content

Commit 68a7daa

Browse files
author
김가은
committed
fix: 줄바꿈 수정
1 parent 24d7769 commit 68a7daa

File tree

3 files changed

+1
-2
lines changed

3 files changed

+1
-2
lines changed

3sum/paran22.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@ def threeSum(self, nums: List[int]) -> List[List[int]]:
2121
left += 1
2222

2323
return [list(x) for x in answer]
24+

climbing-stairs/paran22.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ def climbStairs(self, n: int) -> int:
99
current = prev1 + prev2
1010
prev1, prev2 = prev2, current
1111
return prev2
12-

valid-anagram/paran22.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,3 @@ class Solution:
55
def isAnagram(self, s: str, t: str) -> bool:
66
return Counter(s) == Counter(t)
77

8-

0 commit comments

Comments
 (0)