Created
July 22, 2019 22:04
-
-
Save mementum/c2f6b3cf45ccd63ba8705f3156be7c9b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def next(self): | |
# sort data and current rank | |
ranks = sorted( | |
self.ranks.items(), # get the (d, rank), pair | |
key=lambda x: x[1][0], # use rank (elem 1) and current time "0" | |
reverse=True, # highest ranked 1st ... please | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment