Skip to content

Commit ca3b663

Browse files
committed
lint
1 parent 6f8a884 commit ca3b663

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

3sum/Sung-Heon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ def threeSum(self, nums: List[int]) -> List[List[int]]:
3030
else:
3131
right -= 1
3232

33-
return result
33+
return result

product-of-array-except-self/Sung-Heon.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def productExceptSelf(self, nums: List[int]) -> List[int]:
1111
answer[i] *= right_product
1212
right_product *= nums[i]
1313

14-
return answer
14+
return answer

valid-anagram/Sung-Heon.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ def isAnagram(self, s: str, t: str) -> bool:
1111
return False
1212
if len(t) == 0:
1313
return True
14-
else :
15-
return False
14+
else:
15+
return False

0 commit comments

Comments
 (0)