From 2f9433e2b3deed09f9d5a0d07fef27d2e85fbdcd Mon Sep 17 00:00:00 2001 From: Aven Xiangwen Liu Date: Thu, 21 Dec 2017 13:00:49 -0600 Subject: [PATCH] Update two-sum.py --- Python/two-sum.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Python/two-sum.py b/Python/two-sum.py index d7f27f0f1..9a1ed7008 100644 --- a/Python/two-sum.py +++ b/Python/two-sum.py @@ -25,7 +25,6 @@ def twoSum(self, nums, target): if target - num in lookup: return [lookup[target - num], i] lookup[num] = i - return [] def twoSum2(self, nums, target): """