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.
Apple and Orange
Apple and Orange
Sort by
recency
|
3009 Discussions
|
Please Login in order to post a comment
JS easy solution:-
Javascript solution:-
`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)
java, please critque if necessary -