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

@@ -0,0 +1,13 @@
//
// Created by caleb on 3/7/24.
//
#ifndef MP2_CALEBFONTENOT_CLION_BINARYSEARCH_H
#define MP2_CALEBFONTENOT_CLION_BINARYSEARCH_H
#include <vector>
std::tuple<int, int> binarySearch(std::vector<std::vector<int>> arr, int numToSearchFor);
int binarySearch(std::vector<int> arr, int numToSearchFor);
#endif //MP2_CALEBFONTENOT_CLION_BINARYSEARCH_H