Skip to content

Commit e6382da

Browse files
committed
chore: 개행 추가
1 parent a01d15d commit e6382da

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

3sum/jinah92.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ def threeSum(self, nums: List[int]) -> List[List[int]]:
1717
low, high = low+1, high-1
1818

1919
return list(three_sums)
20+

climbing-stairs/jinah92.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,5 @@ def climbStairs(self, n: int) -> int:
99
prev, curr = curr, prev + curr
1010

1111
return curr
12+
1213

valid-anagram/jinah92.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ def isAnagram(self, s: str, t: str) -> bool:
1111

1212
# dictionary의 모든 요소 종류와 개수가 일치해야 함
1313
return char_set_1 == char_set_2
14+

0 commit comments

Comments
 (0)