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.
for i in apples:
k = a + i
if t >= k >= s:
apple_count += 1
for i in oranges:
k = b + i
if s <= k <= t:
orange_count += 1
print(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 →
Python3##
def countApplesAndOranges(s, t, a, b, apples, oranges): apple_count = 0 orange_count = 0