From e846f8ff50df244d6d5dd6ec537434d141ed7dac Mon Sep 17 00:00:00 2001 From: Mohit Sharma Date: Mon, 14 Aug 2017 01:38:06 +0530 Subject: [PATCH] Added Implementation of Selection Sort --- Sorts/selectionSort.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sorts/selectionSort.js b/Sorts/selectionSort.js index 065bd5e8a..46ba3e1e8 100644 --- a/Sorts/selectionSort.js +++ b/Sorts/selectionSort.js @@ -27,7 +27,7 @@ function selectionSort(items) { } } -//Implementation of bubbleSort +//Implementation of Selection Sort var ar = [5, 6, 7, 8, 1, 2, 12, 14]; //Array before Sort