class MyHashSet { public: /** Initialize your data structure here. */ MyHashSet() { } void add(int key) { ) set[key]++; } void remove(int key) { ) set[key]--; } /** Returns true if this set contains the specified element */ bool contains(int key) { )…