You are viewing a single comment's thread. Return to all comments →
def marcsCakewalk(calorie): calorie = sorted(calorie,reverse=True) n = len(calorie) return sum([2**i * v for i, v in zip(range(n),calorie) ])
Seems like cookies are disabled on this browser, please enable them to open this website
Marc's Cakewalk
You are viewing a single comment's thread. Return to all comments →