#ifndef S0035_SEARCH_INSERT_POSITION_HPP #define S0035_SEARCH_INSERT_POSITION_HPP #include using namespace std; class S0035 { public: int searchInsert1(vector& nums, int target); int searchInsert2(vector& nums, int target); }; #endif