Any way to make dynamic lists/arrays?

For small arrays of numbers, you can store them encoded inside a number variable in a certain base. For example, 54321 could be an array of integers from 0-9 where the first element is 5, the second is 4, etc. 5330 (210221023) could be an array of integers from 0-2 where the first element is 2, the second is 1, etc.

1 Like