No description
  • C++ 90%
  • CMake 10%
Find a file
2026-02-01 19:40:27 -07:00
.devcontainer starter-code for 2P-Hashtable 2026-02-01 19:40:27 -07:00
tests starter-code for 2P-Hashtable 2026-02-01 19:40:27 -07:00
.gitignore starter-code for 2P-Hashtable 2026-02-01 19:40:27 -07:00
CMakeLists.txt starter-code for 2P-Hashtable 2026-02-01 19:40:27 -07:00
hashtable.h starter-code for 2P-Hashtable 2026-02-01 19:40:27 -07:00
LICENSE starter-code for 2P-Hashtable 2026-02-01 19:40:27 -07:00
main.cpp starter-code for 2P-Hashtable 2026-02-01 19:40:27 -07:00
README.md starter-code for 2P-Hashtable 2026-02-01 19:40:27 -07:00

2P-Hashtable

To Compile/Run

  1. cmake . -B build (on Windows native, use cmake . -B build -G "MinGW Makefiles")
  2. cd build
  3. make (on Windows native, use mingw32-make)
  4. ./run-tests or ./run-main

Important Notes:

  • Do not modify the tests/ folder.