#ifndef S0704_BINARY_SEARCH_HPP #define S0704_BINARY_SEARCH_HPP #include using namespace std; class S0704 { public: int binSearch1(vector& nums, int target); int binSearch2(vector& nums, int target); }; #endif