我需要获取能够删除数字副本的代码,因为我有一个随机数生成器,它生成与数组计数器相关联的数字,该数组是一个' pack'卡,所以我真的不能改变代码,但我真的需要停止重复出现!
这里的其他问题要求我改变我的整个代码,这是我无法做到的,因为这意味着我必须重新开始我现在没有时间,因为我需要在一周内开始测试,我还有更多的代码要实现!
for (int v = 0; v < 30; v++)
{
Random rnd = new Random();
rnd.nextInt(30);
int i = rnd.nextInt(30);
System.out.println(i + " " + aCards[i].getCard());
}
This is what the code above produces, there are clearly duplicates within the list!