Update MP2

This commit is contained in:
2024-03-07 18:40:11 -06:00
parent 00e479a3a1
commit dd2bb0c99a
35 changed files with 2752 additions and 74 deletions

View File

@@ -23,7 +23,9 @@ int getLowestInRow(std::vector<std::vector<int>> arr, int desiredRow);
int getHighestInColumn(std::vector<std::vector<int>> arr, int desiredColumn);
int getLowestInColumn(std::vector<std::vector<int>> arr, int desiredColumn);
std::string printVector(std::vector<int> arr);
std::string printVector(std::vector<std::vector<int>> arr);
std::string printVector(std::vector<int> arr, std::vector<int> locationVector = {-1});
std::string printVector(std::vector<std::vector<int>> arr, std::vector<std::tuple<int, int>> locationVector = {{-1, -1}});
std::vector<std::vector<int>> random2DArray(int x, int y);
#endif //MP2_CALEBFONTENOT_CLION_2DARRAYOPERATIONS_H