You are viewing a single comment's thread. Return to all comments →
def icecreamParlor(m, arr): # Write your code here for i,it1 in enumerate(arr): for j,it2 in enumerate(arr[i+1:]): if it1+it2==m: return([i+1,i+1+j+1])
Seems like cookies are disabled on this browser, please enable them to open this website
Ice Cream Parlor
You are viewing a single comment's thread. Return to all comments →