From c10cb8c8393def0b17db905cc7daa5c3108a46c9 Mon Sep 17 00:00:00 2001 From: marsonya Date: Mon, 1 Feb 2021 21:02:15 +0530 Subject: [PATCH] Standard fixes | Flash Sort --- Sorts/FlashSort.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sorts/FlashSort.js b/Sorts/FlashSort.js index 4685c7a59..3bd1381f4 100644 --- a/Sorts/FlashSort.js +++ b/Sorts/FlashSort.js @@ -1,8 +1,8 @@ /** - * Flashsort is a distribution sorting algorithm showing linear + * Flashsort is a distribution sorting algorithm showing linear * computational complexity O(n) for uniformly distributed * data sets and relatively little additional memory requirement. - * + * * Wikipedia: https://en.wikipedia.org/wiki/Flashsort */ @@ -87,4 +87,4 @@ console.log(array) // After Sort console.log('- After Sort | Implementation of Flash Sort -') console.log(flashSort(array)) -console.log('\n') \ No newline at end of file +console.log('\n')