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.
- Breaking the Records
- Discussions
Breaking the Records
Breaking the Records
Sort by
recency
|
198 Discussions
|
Please Login in order to post a comment
Using javaScript: let max = scores[0]; let min = scores[0];
}
console.log(breakingRecords([12, 24, 10, 24]))
Using C++
vector breakingRecords(vector scores) {
}
Simple solution using Java 15
}
my java solution :
Python Solution:
def breakingRecords(scores): # Write your code here min_count = 0 max_count = 0 min_score = scores[0] max_score = scores[0]