Typo in comment: Big O for selection sort (#61)

This commit is contained in:
Lokesh Jadhav
2018-03-19 17:51:48 +01:00
committed by Aditya Bhargava
parent c7c8827628
commit bb4a8638f1

View File

@@ -1,5 +1,5 @@
'use strict'; 'use strict';
// Selection Sort - O(log n^2) // Selection Sort - O(n^2)
// Parameter: // Parameter:
// 1. random array // 1. random array