leetcode/include/s0008_string_to_integer.hpp

17 lines
235 B
C++
Raw Permalink Normal View History

2022-11-21 13:15:56 +00:00
#ifndef S0008_STRING_TO_INTEGER_HPP
#define S0008_STRING_TO_INTEGER_HPP
2022-11-02 14:02:42 +00:00
#include <string>
#include <unordered_map>
#include <vector>
2022-11-02 14:23:02 +00:00
#include <climits>
2022-11-02 14:02:42 +00:00
using namespace std;
2022-11-30 10:20:36 +00:00
class S0008 {
2022-11-02 14:02:42 +00:00
public:
int myAtoi(string s);
};
#endif