Created
March 13, 2022 13:33
-
-
Save Deleplace/c65ec0e1b31485c0eb7519070078b5f5 to your computer and use it in GitHub Desktop.
Sort a list of strings, case-insensitively
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
main() { | |
var data = ["Hello", "the", "world", "ham", "Tower", "WASP"]; | |
data.sort((a, b) => a.toUpperCase().compareTo(b.toUpperCase())); | |
print(data); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment