I need help with writing some code that will create a random number from an array of 12 numbers and print it 9 times without dupes. This has been tough for me to accomplish. Any ideas?
|
|
||||
|
|
|
The most effective and efficient way to do this is to shuffle your numbers then print the first nine of them. Use a good shuffle algorithm.What Thilo suggested will give you poor results. See here. Edit Here's a brief Knuth Shuffle algorithm example:
|
|||||||||||
|
|
Try this once:
|
|||
|
|
|
This is relatively simple to do, the theory behind it is creating another array which keeps track of which elements of the array you have used.
Other methods include shuffling the array, removing used elements from the array, or moving used elements to the end of the array. |
|||||||
|
|
If I understand you correctly, you want to shuffle your array. Loop a couple of times (length of array should do), and in every iteration, get two random array indexes and swap the two elements there. (Update: if you are really serious about this, this may not be the best algorithm). You can then print the first nine array elements, which will be in random order and not repeat. |
||||
|
|
