#include <unordered_map> #include <iostream> using namespace std; int main(int argc, const char *argv[]) { unordered_map<int, string> m; m[3]; std::cout << m[3] << std::endl; return 0; }
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 15129 | zachwhaley | Add practice directory |