how to create an array of non-repeated rand numbers

后端 未结 4 970
时光取名叫无心
时光取名叫无心 2021-01-23 02:57

I would like to create a array having 21 values between 0 to 20.I would like them to be in random and at the same time non-repeated.

I know how to create a random number

4条回答
  •  感情败类
    2021-01-23 03:16

    It sounds like you're making it harder than necessary. Why don't you create an array of the numbers 1-20, and then randomize it through a shuffle.

提交回复
热议问题