I have an NSMutableArray with some NSNumber :
{1, 2, 3, 3, 2, 1, 6, 2}
I would like to know how many occurrence of each number appears in the list.
Ex :
1 = 2
2 = 3
3 = 2
6 = 1
I have an NSMutableArray with some NSNumber :
{1, 2, 3, 3, 2, 1, 6, 2}
I would like to know how many occurrence of each number appears in the list.
Ex :
1 = 2
2 = 3
3 = 2
6 = 1