Hey,
I am breaking my head here because this seems very easy but I cant seem to figure it out.
I have an array (100,3)
Which follows something like this
The names are in alpha order and names can repeat. How would I go about displaying the Names without repetition
So if looking at the example above, the output would be
Thanks
I am breaking my head here because this seems very easy but I cant seem to figure it out.
I have an array (100,3)
Which follows something like this
Code:
{Bob},{Glass},{Var}
{Bob},{Water},{Var}
{Cedar},{Steel},{Var}
{Frank},{Wood},{Var}
.....
So if looking at the example above, the output would be
Code:
Bob - 2
Cedar - 1
Frank - 1