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 countApplesAndOranges(s, t, a, b, apples, oranges):
# Write your code here
count1 = 0
count2 = 0
for apple in apples:
if a + apple >= s and a + apple <= t:
count1 += 1
print(count1)
for orange in oranges:
if a + orange >= s and a + orange <=t:
count2 +=1
print(count2)
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 →
`def countApplesAndOranges(s, t, a, b, apples, oranges): # Write your code here count1 = 0 count2 = 0 for apple in apples: if a + apple >= s and a + apple <= t: count1 += 1 print(count1) for orange in oranges: if a + orange >= s and a + orange <=t: count2 +=1 print(count2)