Answers for "shuffle in ja"

0

Shuffle The Array

const shuffleArray = (arr) => arr.sort(() => 0.5 - Math.random());

console.log(shuffleArray([1, 2, 3, 4]));
// Result: [ 1, 4, 3, 2 ]
Posted by: Guest on January-07-2022
0

how to write a perfect shuffle method in java

public static int[] RandomizeArray(int[] array){
		Random rgen = new Random();  // Random number generator			
 
		for (int i=0; i<array.length; i++) {
		    int randomPosition = rgen.nextInt(array.length);
		    int temp = array[i];
		    array[i] = array[randomPosition];
		    array[randomPosition] = temp;
		}
 
		return array;
	}
Posted by: Guest on March-07-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language