s0008
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-11-02 22:02:42 +08:00
parent 59d1cb7245
commit 67d21139eb
3 changed files with 78 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#ifndef S0008_STRING_TO_INTEGER
#define S0008_STRING_TO_INTEGER
#include <string>
#include <unordered_map>
#include <vector>
using namespace std;
class Solution {
public:
int myAtoi(string s);
};
#endif