This commit is contained in:
2022-11-30 18:20:36 +08:00
parent b13cfa00bb
commit 72555b19e0
132 changed files with 332 additions and 334 deletions

View File

@@ -5,14 +5,10 @@
using namespace std;
class Solution1 {
class S0704 {
public:
int binSearch(vector<int>& nums, int target);
};
class Solution2 {
public:
int binSearch(vector<int>& nums, int target);
int binSearch1(vector<int>& nums, int target);
int binSearch2(vector<int>& nums, int target);
};
#endif