#ifndef S0704_BINARY_SEARCH_HPP #define S0704_BINARY_SEARCH_HPP #include using namespace std; class Solution1 { public: int binSearch(vector& nums, int target); }; class Solution2 { public: int binSearch(vector& nums, int target); }; #endif