This commit is contained in:
2022-11-21 21:32:04 +08:00
parent d7a0d6cfe3
commit 68ca2ebbc9
3 changed files with 74 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
#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