If i have a set of numbers stored in some alterables values, how would I loop through the values and count the number of times each unique number appears?
For example:
Alterable value 0 = 0
Alterable value 1 = 1
Alterable value 2 = 1000
Alterable value 3 = 500
Alterable value 4 = 1000
I would want my program to output that there is one 0, one 1, one 500, and two 1000s....
Thanks!