Reputation: 17
I've got an array like this one:
arrayname[1] = "jacob";
arrayname[2] = "peter";
arrayname[3] = "jacob";
arrayname[4] = "nicholas";
I want to remove the double jacob so it will be like
arrayname[1] = "jacob";
arrayname[2] = "peter";
arrayname[3] = "nicholas";
How do I do that?
Upvotes: 1
Views: 619