You are viewing a single comment's thread. Return to all comments →
def getMoneySpent(keyboards, drives, b): arr = [] max = -1 for i in keyboards: for j in drives: sum = i+j if sum <= b and sum > max: max = sum return max
Seems like cookies are disabled on this browser, please enable them to open this website
Electronics Shop
You are viewing a single comment's thread. Return to all comments →