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.
defcountApplesAndOranges(s,t,a,b,apples,oranges):# Write your code hereapple_count=0orange_count=0foriinrange(len(apples)):apples[i]+=aifs<=apples[i]<=t:apple_count+=1foriinrange(len(oranges)):oranges[i]+=bifs<=oranges[i]<=t:orange_count+=1print(apple_count)print(orange_count)
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Apple and Orange
You are viewing a single comment's thread. Return to all comments →
Clean Python Code: