• + 1 comment

    `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)