stoi()가 음수까지 커버 가능한지 궁금해서 처리했으나, 음수까지 전부 알아서 해줌; 똑똑한 stoi() atoi()도 마찬가지로 음수까지 커버가 된다. #include <string> #include <vector> using namespace std; int solution(string s) { int answer = stoi(s); return answer; }
#include <string> #include <vector> using namespace std; int solution(string s) { int answer = stoi(s); return answer; }