Skip to content

Instantly share code, notes, and snippets.

@ybenjo
Created June 12, 2010 12:15
Show Gist options
  • Save ybenjo/435673 to your computer and use it in GitHub Desktop.
Save ybenjo/435673 to your computer and use it in GitHub Desktop.
#include <map>
#include <unordered_map>
using namespace std;
typedef pair<int, int> key_type;
int main(){
unordered_map<key_type,int> nemui;
nemui[key_type(1, 1)] = 100;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment