leetcode/include/s0035_search_insert_position.hpp

15 lines
229 B
C++
Raw Normal View History

2022-11-21 13:32:04 +00:00
#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