Skip to content

Instantly share code, notes, and snippets.

@Nasah-Kuma
Created January 31, 2025 07:59
Show Gist options
  • Save Nasah-Kuma/8f372987a947819a50e6663a2023d0d7 to your computer and use it in GitHub Desktop.
Save Nasah-Kuma/8f372987a947819a50e6663a2023d0d7 to your computer and use it in GitHub Desktop.
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