No description
  • C++ 89.9%
  • CMake 10.1%
Find a file
2026-03-02 14:12:46 -07: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 push code 2026-03-02 14:12:46 -07:00
README.md starter-code for 1P-Sorting 2026-01-23 14:19:56 -07:00
sorter.h push code 2026-03-02 14:12:46 -07: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.