From 6fdd267459e4c482c4abeedebdab66392f442712 Mon Sep 17 00:00:00 2001 From: Omkarnath Parida Date: Sun, 3 Oct 2021 20:10:26 +0530 Subject: [PATCH] Update FisherYatesShuffle.js removed console statement --- Sorts/FisherYatesShuffle.js | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Sorts/FisherYatesShuffle.js b/Sorts/FisherYatesShuffle.js index 77eee5e61..214cb5baa 100644 --- a/Sorts/FisherYatesShuffle.js +++ b/Sorts/FisherYatesShuffle.js @@ -16,9 +16,3 @@ export const shuffle = (array) => { return array } - -const array = [0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89] -console.log('array', array) - -const mixedArray = shuffle(array) -console.log('mixedArray', mixedArray)