No description
  • C++ 91.3%
  • CMake 8.7%
Find a file
2026-04-16 22:06:10 -06:00
.devcontainer starter-code for 1P-Sorting 2026-01-23 14:19:56 -07:00
tests starter-code for 1P-Sorting 2026-01-23 14:19:56 -07:00
.gitignore starter-code for 1P-Sorting 2026-01-23 14:19:56 -07:00
CMakeLists.txt starter-code for 1P-Sorting 2026-01-23 14:19:56 -07:00
LICENSE starter-code for 1P-Sorting 2026-01-23 14:19:56 -07:00
main.cpp code 2026-04-16 22:06:10 -06:00
README.md starter-code for 1P-Sorting 2026-01-23 14:19:56 -07:00
sorter.h code 2026-04-16 22:06:10 -06:00

1P-Sorting

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.