leetcode/include/s0035_search_insert_position.hpp
2022-11-21 21:32:04 +08:00

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