Skip to content

Instantly share code, notes, and snippets.

View kevinwestern's full-sized avatar

Kevin Western kevinwestern

View GitHub Profile
int N = 1000000;
void main() {
List<int> arr = initArray();
Stopwatch start = new Stopwatch();
start.start();
merge_sort(arr, 0, N);
start.stop();
print(start.elapsedInMs());
var test = [1,2,3],
copy = test.slice();