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.
- Prepare
- Algorithms
- Warmup
- Compare the Triplets
- Discussions
Compare the Triplets
Compare the Triplets
Sort by
recency
|
4359 Discussions
|
Please Login in order to post a comment
It's a concise and effective exercise for mastering comparison-based logic in programming. Ekbet86
What should I do when an input constraint is met ? For example if one of Alice's input scores is >100, should I just not give a point to either in this case ?
For Python3 Platform
function compareTriplets(a, b) { let [_a, _b] = [a, b]; let res = [0, 0];
}