Skip to content
Snippets Groups Projects
main.cpp 230 B
Newer Older
#include <string>
#include "../../hashTable/hashTable.hpp"

int main(){
    HashTable <int> h;

    h.adicionar(1);
    h.adicionar(2);
    h.adicionar(3);
    h.adicionar(4);
    h.adicionar(4);


    h.print();

    return 0;
}