You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
Activity