Skip to content

Commit 171cda5

Browse files
authored
Update 3sum.py
1 parent 3711949 commit 171cda5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

3sum.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# -*- coding: utf-8 -*-
1+
# coding: utf-8
22

33
class Solution:
44
"""
@@ -32,4 +32,6 @@ def twoSum(self, numbers, target, start, end):
3232
start += 1
3333
else:
3434
end -= 1
35-
return ret
35+
return ret
36+
37+
# medium: http://lintcode.com/zh-cn/problem/3sum/

0 commit comments

Comments
 (0)