// https://www.interviewcake.com/question/javascript/shuffle?course=fc1§ion=greedy/* First Intuition for a 'uniform' shuffle: It's same as getting random ball from a bag.You "pick" a random item form array and set it aside (into a new array). Keep doing this until there are no more items in the array. https://www.mathsisfun.com/data/probability-events-conditional.html*/functionswap(array,i,j){lettemp=array[i]array[i] =array[j]array[j] =temp}functiongetRandom(floor,ceiling){returnMath.floor(Math.random() * (ceiling-floor+1)) +floor}// Shuffle the input in placefunctionshuffle(array){constlen=array.lengthif (len<=1) returnfor (leti=0;i<len-1;i++) {constrandomIndex=getRandom(i,len-1)if (i!==randomIndex) swap(array,i,randomIndex)}}/*Time Complexity - O(n)Space complexity - O(1)*//* ---------------------------------------------------------------------------- */consttestCases= [[1,2,3,4,5], [], [7]]for (consttestoftestCases) {shuffle(test)console.log(test)}