You are viewing a single comment's thread. Return to all comments →
def jimOrders(orders): orders = list(enumerate(orders)) orders.sort(key=lambda x:x[1][0] + x[1][1]) return [i[0]+1 for i in orders]
def jimOrders(orders):
orders = list(enumerate(orders)) orders.sort(key=lambda x:x[1][0] + x[1][1]) return [i[0]+1 for i in orders]
Seems like cookies are disabled on this browser, please enable them to open this website
Jim and the Orders
You are viewing a single comment's thread. Return to all comments →