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.
defbreakingRecords(scores):# Write your code heremin_count=0max_count=0mini=scores[0]maxi=scores[0]foriinrange(len(scores)):if(scores[i]<mini):mini=scores[i]min_count+=1elif(scores[i]>maxi):maxi=scores[i]max_count+=1return(max_count,min_count)
Cookie support is required to access HackerRank
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 →