You are viewing a single comment's thread. Return to all comments →
def marcsCakewalk(calorie): min_calorie = sorted(calorie, reverse=True) calories = 0 for i in range(len(min_calorie)): calories += math.pow(2, i) * min_calorie[i] return int(calories)
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 →