I haven't gotten an answer for this one yet. The user can enter a number of items in a list. How can I determine what item has been repeated the most? In the list
1
2
3
there would be none. However, in the list
1
1
2
3
it would be 1. And in the list
1
1
2
2
3
it would be 1, 2. How could I do that?