Skip to content

Commit eeb7c5f

Browse files
Fix : Lint Error
1 parent b4d2e82 commit eeb7c5f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

3sum/printjin-gmailcom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def threeSum(self, nums):
1111
if sum(comb) == -a:
1212
triplet = tuple(sorted([a, *comb]))
1313
res.add(triplet)
14-
return [list(t) for t in res]
14+
return [list(t) for t in res]

validate-binary-search-tree/printjin-gmailcom.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ def inorder(node):
1111
return False
1212
prev = node.val
1313
return inorder(node.right)
14-
return inorder(root)
14+
return inorder(root)

0 commit comments

Comments
 (0)