#ifndef HASHTABLE_OPEN_ADDRESSING_H
#define HASHTABLE_OPEN_ADDRESSING_H


template <class Key, class Hash=std::hash<Key>>
class HashTable {
    // TODO(student): implement an open addressing hash table
};

#endif  // HASHTABLE_OPEN_ADDRESSING_H