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.
defwhatFlavors(cost,money):mapping={}foriinrange(len(cost)):current_price=cost[i]ifcurrent_priceinmapping.keys():ifmapping[current_price]<i+1:# Print complement price index firstprint("{}{}".format(mapping[current_price], i + 1))else:print("{} {}".format(i+1,mapping[cost[i]]))# Map current price index to complement pricemapping[money-current_price]=i+1
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Hash Tables: Ice Cream Parlor
You are viewing a single comment's thread. Return to all comments →
Python3