Update two_sum challenge arguments to match solution (#167)

This commit is contained in:
Varun Upadhyay 2017-04-09 18:51:16 +05:30 committed by Donne Martin
parent 919a9d9924
commit 96b01d00ff

View File

@ -87,7 +87,7 @@
"source": [
"class Solution(object):\n",
"\n",
" def two_sum(self, val):\n",
" def two_sum(self, nums, val):\n",
" # TODO: Implement me\n",
" pass"
]