Why does my code not work?
package generatingInitialPopulation; import java.util.Arrays; import java.util.Collections; public class TestShuffle { publi
Store the list resturned by Arrays.asList and shuffle that...
List myShuffledList = Arrays.asList(arr); Collections.shuffle(myShuffledList);