#Working Bingo Card
6 messages · Page 1 of 1 (latest)
Does every number need to be unique?
Yes the hightest number is 20 and there’s 12 slots on the board
Create a int list of 20 elements using List Create
The value in each list should start at 1 and increment to 20, [1, 2, 3, 4, 5, 6,....]
Set a List<Int> Variable to this list
Shuffle the variable using List Shuffle
Remove the last 8 elements using List Remove At Last and a For, where From is 0 and To is 8
Now you have 12 unique random numbers between [1,20]
You can treat these numbers as a grid, where the first 4 numbers are the first row, the second 4 numbers are the second row, etc