Skip to content

Instantly share code, notes, and snippets.

View HBFLEX's full-sized avatar
💭
Available

HBFL3Xx HBFLEX

💭
Available
View GitHub Profile
@HBFLEX
HBFLEX / main.dart
Last active October 21, 2023 00:41
keen-spray-1020
void main(){
List<int> numbers = [10, 4, 2, 6, 3, 30];
final stopWatch = Stopwatch();
stopWatch.start();
insertionSort(numbers);
stopWatch.stop();
for(int n in numbers) {print(n);}
@HBFLEX
HBFLEX / main.dart
Created October 20, 2023 23:22
keen-spray-1020
void main(){
List<int> numbers = [10, 4, 2, 6, 3, 30];
final stopWatch = Stopwatch();
stopWatch.start();
selectionSort(numbers);
stopWatch.stop();
for(int n in numbers) {print(n);}