When multiple arguments are given, it is converted to tuple and hence cannot be used in the solution file.
eg: def answer(n ,m): in solution file. when calling answer function from driver.py it is converted to tuple which creates the argument as a single tuple instead of two integers.
When multiple arguments are given, it is converted to tuple and hence cannot be used in the solution file.
eg:
def answer(n ,m):in solution file. when calling answer function fromdriver.pyit is converted to tuple which creates the argument as a single tuple instead of two integers.