I have
vector<string> data ;
In this vector, I have repeating element (s), so I want to delete this / these elements. Is there any algorithm or library function to remove duplicate elements?
ex :
In data;
abba, abraham, edie, Abba, edie
After operation;
abba, abraham, edie, Abba
user478571
source
share