19 lines
295 B
C++
19 lines
295 B
C++
#ifndef S0035_SEARCH_INSERT_POSITION_HPP
|
|
#define S0035_SEARCH_INSERT_POSITION_HPP
|
|
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
class Solution1 {
|
|
public:
|
|
int searchInsert(vector<int>& nums, int target);
|
|
};
|
|
|
|
class Solution2 {
|
|
public:
|
|
int searchInsert(vector<int>& nums, int target);
|
|
};
|
|
|
|
#endif
|