sorting-algorithms/src/main.cpp

10 lines
186 B
C++
Raw Normal View History

2023-03-05 03:05:41 -06:00
#include "sort_controller.hpp"
2023-01-11 12:33:46 -06:00
int main(int argc, char* argv[])
2023-01-11 12:33:46 -06:00
{
2023-03-05 03:05:41 -06:00
SortController benchmark;
benchmark.CheckArguments(argc, argv);
benchmark.RunBenchmarks();
2023-01-11 12:33:46 -06:00
return 0;
}