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