Tip
map
이나unordered_map
이나 동일하다.
TL;DR
#include <iostream>
#include <map>
using namespace std;
int main() {
map<string, int> m;
m.erase("thrid element");
}
Tip
map
이나unordered_map
이나 동일하다.
#include <iostream>
#include <map>
using namespace std;
int main() {
map<string, int> m;
m.erase("thrid element");
}