Name: Anonymous 2012-01-13 6:23
If you cant sense it, then it doesnt exist.
You cant see emptiness, therefore emptiness doesnt exist.
You cant see emptiness, therefore emptiness doesnt exist.
for (int i = 0; i < mylist.length; i++) {
int index = (int) (Math.random() % mylist.length) // * -> %
mylist[index] = i;
}for (int i = 0; i < mylist.length; i++) {
int index = (int) (Math.random() * mylist.length)
mylist[i] = index;
}