Skip to content

Instantly share code, notes, and snippets.

@anders-sandholm
Created February 21, 2018 02:10
Show Gist options
  • Save anders-sandholm/2bec1e41cae30f42c29d76d0c3603226 to your computer and use it in GitHub Desktop.
Save anders-sandholm/2bec1e41cae30f42c29d76d0c3603226 to your computer and use it in GitHub Desktop.
void main() {
List<int> prices = ['99', '27', '10000', '20000000'];
// Sort in place from smallest to largest
prices.sort();
print('Lowest price is ${prices[0]}!');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment