Skip to content

Commit

Permalink
chore: 개행 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
jinah92 committed Dec 20, 2024
1 parent a01d15d commit e6382da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions 3sum/jinah92.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ def threeSum(self, nums: List[int]) -> List[List[int]]:
low, high = low+1, high-1

return list(three_sums)

1 change: 1 addition & 0 deletions climbing-stairs/jinah92.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ def climbStairs(self, n: int) -> int:
prev, curr = curr, prev + curr

return curr


1 change: 1 addition & 0 deletions valid-anagram/jinah92.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ def isAnagram(self, s: str, t: str) -> bool:

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

0 comments on commit e6382da

Please sign in to comment.