| 1 | class MyHashMap { |
| 2 | public: |
| 3 | MyHashMap() { |
| 4 | |
| 5 | } |
| 6 | vector<pair<int,int>> bucket[100]; //bucket is an array whose each element is a vector of pair |
| 7 | |
| 8 | void put(int key, int value) { |
nothing calls this directly
no outgoing calls
no test coverage detected