Skip to content

Instantly share code, notes, and snippets.

@Deleplace
Created March 13, 2022 13:33
Show Gist options
  • Save Deleplace/c65ec0e1b31485c0eb7519070078b5f5 to your computer and use it in GitHub Desktop.
Save Deleplace/c65ec0e1b31485c0eb7519070078b5f5 to your computer and use it in GitHub Desktop.
Sort a list of strings, case-insensitively
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