-
-
Save jebright/90080c459eafd99a0bf6a0294edc19ab to your computer and use it in GitHub Desktop.
Dart Fundamentals - Lists - Sort
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
void main() { | |
List<double> prices = [0.25, 1.00, 3.33, 0.75, 4.25, 5.99]; | |
prices.sort(); | |
log(prices); //prints 0.25, 0.75, 1, 3.33, 4.25, 5.99 | |
List<String> alphabet = ["b", "c", "a"]; | |
alphabet.sort(); | |
log(alphabet); //prints a,b,c | |
} | |
void log(var lst) { | |
lst.forEach((n) => print(n)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment