added a few more pieces to the framework, overhauled main.cc

This commit is contained in:
2024-07-03 11:08:55 -04:00
parent 97ff14cd26
commit 6cbeb42144
17 changed files with 416 additions and 61 deletions

View File

@ -23,7 +23,7 @@ typedef struct position {
bool operator<(const position &other) const;
} position;
size_t find(const std::vector<position> &sorted_list,
const position &target);
std::size_t find(const std::vector<position> &sorted_list,
const position &target);
#endif