Added some parameter changes in sum_two_challenge.ipynb from val->a,b

This commit is contained in:
Mirza Ahmer Gull 2022-10-02 14:10:12 +05:00
parent 358f2cc604
commit 294a7aecdc

View File

@ -73,7 +73,7 @@
"source": [ "source": [
"class Solution(object):\n", "class Solution(object):\n",
"\n", "\n",
" def sum_two(self, val):\n", " def sum_two(self, a, b):\n",
" # TODO: Implement me\n", " # TODO: Implement me\n",
" pass" " pass"
] ]