leetcode/include/s0008_string_to_integer.hpp

16 lines
211 B
C++
Raw Normal View History

2022-11-02 14:02:42 +00:00
#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