Skip to content

Instantly share code, notes, and snippets.

@caseywatts
Created July 8, 2021 14:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save caseywatts/5e407dfbb99d29e260b4e3c86f298382 to your computer and use it in GitHub Desktop.
Save caseywatts/5e407dfbb99d29e260b4e3c86f298382 to your computer and use it in GitHub Desktop.
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