Created
July 8, 2021 14:45
-
-
Save caseywatts/5e407dfbb99d29e260b4e3c86f298382 to your computer and use it in GitHub Desktop.
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
a = `10 | |
13 | |
10 | |
9 | |
14 | |
10` | |
b = a.split("\n") | |
c = b.map(a => Number(a)) | |
d = c.sort((a, b) => b-a) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment