We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
def minimumLoss(price):
valores = []
for pv in range(len(price)):
for pi in range(pv + 1, len(price)):
rest = price[pv] - price[pi]
if rest > 0:
valores.append(rest)
return min(valores)
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Minimum Loss
You are viewing a single comment's thread. Return to all comments →
def minimumLoss(price): valores = []
for pv in range(len(price)): for pi in range(pv + 1, len(price)): rest = price[pv] - price[pi] if rest > 0: valores.append(rest)