Skip to content

Commit ec92d4d

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

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-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+

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)