#ifndef S0008_STRING_TO_INTEGER_HPP #define S0008_STRING_TO_INTEGER_HPP #include #include #include #include using namespace std; class Solution { public: int myAtoi(string s); }; #endif