Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sjdev2212/mob-25-3
https://github.com/sjdev2212/mob-25-3
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/sjdev2212/mob-25-3
- Owner: sjdev2212
- Created: 2022-03-25T16:09:49.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-25T16:17:46.000Z (almost 3 years ago)
- Last Synced: 2024-11-09T04:33:06.448Z (about 2 months ago)
- Language: Ruby
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
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.
Example
Scores are in the same order as the games played. She tabulates 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 1Given the scores for a season, determine the number of times Maria breaks her records for most and least points scored during the season.
Function Description
Complete the breakingRecords function in the editor below.
breakingRecords has the following parameter(s):
int scores[n]: points scored per game
Returns
int[2]: An array with the numbers of times she broke her records. Index
is for breaking most points records, and index
is for breaking least points records.