15 lines
229 B
C++
15 lines
229 B
C++
|
#ifndef S0035_SEARCH_INSERT_POSITION_HPP
|
||
|
#define S0035_SEARCH_INSERT_POSITION_HPP
|
||
|
|
||
|
#include <vector>
|
||
|
#include <cmath>
|
||
|
|
||
|
using namespace std;
|
||
|
|
||
|
class Solution {
|
||
|
public:
|
||
|
int searchInsert(vector<int>& nums, int target);
|
||
|
};
|
||
|
|
||
|
#endif
|