Hackerrank: Compare the Triplets Solution
Implementation
1function compareTriplets(a, b) {2 let [aPoint, bPoint] = [0, 0]34 function compareAiBi(ai, bi) {5 if (ai > bi) return aPoint++6 if (bi > ai) return bPoint++7 }89 for (let i = 0; i < 3; i++) compareAiBi(a[i], b[i])1011 return [aPoint, bPoint]12}
References
Comments
Loading comments...
Tags
hackerrank
array
Apply and earn a $2,500 bonus once you're hired on your first job!
Clients from the Fortune 500 to Silicon Valley startups
Choose your own rate, get paid on time
From hourly, part-time, to full-time positions
Flexible remote working environment
A lot of open JavaScript jobs!!
Fact corner: Referred talent are 5x more likely to pass the Toptal screening process than the average applicant.
Still hesitate? Read HoningJS author's guide on dealing with Toptal interview process.
Next Post
LeetCode: Spiral Matrix II
Same with I, with a small modification
Previous Post
Hackerrank: Extra Long Factorials
Basically the multiply strings problem