Skip to content

Commit 2d41143

Browse files
reformat the code
1 parent 01db55f commit 2d41143

File tree

2 files changed

+0
-14
lines changed

2 files changed

+0
-14
lines changed
Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,5 @@
11
part of '../view_model/sorting_notifier.dart';
22

3-
enum SortingAlgorithm {
4-
bubble,
5-
selection,
6-
insertion,
7-
merge,
8-
// quick,
9-
// shell,
10-
// heap,
11-
// count,
12-
// radix,
13-
// bucket,
14-
}
15-
163
enum SortingEnum { played, stopped, none }
174

185
enum SortingStatus { unSorted, compared, swapping, swapped, sorted, none }

lib/features/sorting/shell/view_model/shell_sort_notifier.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ class ShellSortNotifier extends SortingNotifier {
2727
}
2828
}
2929

30-
// Mark all sorted at the end
3130
steps.add(SortingStep(index1: arr.length - 1, index2: arr.length - 1, action: SortingStatus.sorted));
3231

3332
return SortingResult(sortedValues: arr, steps: steps);

0 commit comments

Comments
 (0)