17 lines
230 B
C++
17 lines
230 B
C++
#ifndef S0008_STRING_TO_INTEGER
|
|
#define S0008_STRING_TO_INTEGER
|
|
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
#include <climits>
|
|
|
|
using namespace std;
|
|
|
|
class Solution {
|
|
public:
|
|
int myAtoi(string s);
|
|
};
|
|
|
|
#endif
|