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.
defclimbingLeaderboard(ranked,player):ranked=sorted(set(ranked),reverse=True)negated_list=[-xforxinranked]result=[]forpinplayer:# Binary search to find the correct ranktry:result.append(ranked.index(p)+1)except:result.append(bisect.bisect_left(negated_list,-p)+1)returnresult
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Climbing the Leaderboard
You are viewing a single comment's thread. Return to all comments →