suhasthegame
Results
1
comments of
suhasthegame
Hey Mark, We can still solve this by using the variable argument syntax in the sum_two method class Solution(object): def sum_two(self, *val): return sum(val) Run the test cases and it...