Javascript Solution for HackerRank Problem: Breaking the Records
"Breaking the Records " is a super easy problem available on hackerRank, i Have solved it using javascript. Let me know if there is any better way to solve it.
Problem Description
Maria plays college basketball and wants to go pro. Each season she maintains a record of her play. She tabulates the number of times she breaks her season record for most points and least points in a game. Points scored in the first game establish her record for the season, and she begins counting from there.
For example, assume her scores for the season are represented in the array scores = [12, 24, 10, 24]. Scores are in the same order as the games played. She would tabulate her results as follows:
Count Game Score Minimum Maximum Min Max 0 12 12 12 0 0 1 24 12 24 0 1 2 10 10 24 1 1 3 24 10 24 1 1
Given Maria's scores for a season, find and print the number of times she breaks her records for most and least points scored during the season.
Function Description
Complete the breakingRecords function in the editor below. It must return an integer array containing the numbers of times she broke her records. 0 Index is for breaking most points records, and 1 index is for breaking least points records.
breakingRecords has the following parameter(s): scores: an array of integers
Input Format
The first line contains an integer
, the number of games.
The second line contains space-separated integers describing the respective values of . score0 ,score1,.....scoren - 1 .
Constraints
1 <= n <= 1000
0 <= scores[i] <= 108
Output Format
Print two space-seperated integers describing the respective numbers of times her best (highest) score increased and her worst (lowest) score decreased.
Sample Input
9 10 5 20 20 4 5 2 25 1
Sample Output
2 4
Comments
Leave a comment
You are not LoggedIn but you can comment as an anonymous user which requires manual approval. For better experience please Login.