You are viewing a single comment's thread. Return to all comments →
# Chocolate Feast 🍫 def chocolate_feast(n, c, m): chocolates = wrappers = n // c while wrappers >= m: chocolates += wrappers // m wrappers = wrappers % m + wrappers // m return chocolates
Seems like cookies are disabled on this browser, please enable them to open this website
Chocolate Feast
You are viewing a single comment's thread. Return to all comments →