Created
December 26, 2024 15:03
-
-
Save rik/90c45d5fb657a17eb3f6bff140ad65d6 to your computer and use it in GitHub Desktop.
Python > JS
This file contains 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
gens.sort((a, b) => { | |
const messagesCmp = b.messages - a.messages | |
if (messagesCmp != 0) { | |
return messagesCmp | |
} | |
return b.anciennete - a.anciennete | |
}) |
This file contains 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
gens.sort(attrgetter('messages', 'anciennete')) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment