leetcode/include/s0008_string_to_integer.hpp

17 lines
235 B
C++

#ifndef S0008_STRING_TO_INTEGER_HPP
#define S0008_STRING_TO_INTEGER_HPP
#include <string>
#include <unordered_map>
#include <vector>
#include <climits>
using namespace std;
class S0008 {
public:
int myAtoi(string s);
};
#endif