#ifndef HASHTABLE_SEPARATE_CHAINING_H
#define HASHTABLE_SEPARATE_CHAINING_H


template <class Key, class Hash=std::hash<Key>>
class HashTable {
    // TODO(student): implement a separate chaining hash table
};

#endif  // HASHTABLE_SEPARATE_CHAINING_H