Created
January 31, 2025 07:59
-
-
Save Nasah-Kuma/8f372987a947819a50e6663a2023d0d7 to your computer and use it in GitHub Desktop.
Hacker Rank Challenge: https://www.hackerrank.com/challenges/apple-and-orange/problem?isFullScreen=true
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function countApplesAndOranges(s, t, a, b, apples, oranges) { | |
// Write your code here | |
let applesOnHouse = 0; | |
let orangesOnHouse = 0; | |
const applesDistancesFromTree = apples.map((apple) => apple+a); | |
const orangesDistancesFromTree = oranges.map((orange) => orange+b); | |
applesDistancesFromTree.forEach((appleDistance) => { | |
if(appleDistance >= s && appleDistance <= t) applesOnHouse++; | |
}) | |
orangesDistancesFromTree.forEach((orangeDistance) => { | |
(orangeDistance >= s && orangeDistance <= t) && orangesOnHouse++; | |
}) | |
console.log(applesOnHouse); | |
console.log(orangesOnHouse); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment