16 lines
211 B
C++
16 lines
211 B
C++
|
#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
|