I use this for testing and that is about it.
import random def randomArr(length, max): arr = [] for i in range(0, length): arr.append(random.randint(0, max)) return arr
I use this for testing and that is about it.
import random def randomArr(length, max): arr = [] for i in range(0, length): arr.append(random.randint(0, max)) return arr