You are viewing a single comment's thread. Return to all comments →
def breakingRecords(scores): max_score=scores[0] min_score=scores[0] max_count=0 min_count=0 for score in scores[1:]: if score>max_score: max_score=score max_count+=1 elif score
Seems like cookies are disabled on this browser, please enable them to open this website
Breaking the Records
You are viewing a single comment's thread. Return to all comments →
def breakingRecords(scores): max_score=scores[0] min_score=scores[0] max_count=0 min_count=0 for score in scores[1:]: if score>max_score: max_score=score max_count+=1 elif score