Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions problemSolving/breakingTheRecords/BreakingTheRecords.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ using namespace std;
vector<string> split_string(string);

// Complete the breakingRecords function below.
// Hihi haasdele
vector<int> breakingRecords(vector<int> scores , int n) {
int min = scores[0]; int max = scores[0];vector<int> result(2);
for(int i = 1; i < n ; i++){
Expand Down