#libraries
Read more stories on Hashnode
Articles with this tag
# TL;DR string str = "aaabcdeaaaa"; str.erase(remove(str.begin(), str.end(), 'a'), str.end()); cout<<str<<endl; str.erase takes 2...