You are viewing a single comment's thread. Return to all comments →
My Python code, which passed all the test cases:
def solve(steps): steps_tr = list(zip(*steps)) #list 'steps' transposed return min(steps_tr[0])*min(steps_tr[1])
Seems like cookies are disabled on this browser, please enable them to open this website
Rectangular Game
You are viewing a single comment's thread. Return to all comments →
My Python code, which passed all the test cases: