Programers : 문자열을 정수로 바꾸기(stoi / atoi)

김정욱·2021년 1월 19일
0

Algorithm - 문제

목록 보기
44/249
post-custom-banner

  • stoi()가 음수까지 커버 가능한지 궁금해서 처리했으나, 음수까지 전부 알아서 해줌;
  • 똑똑한 stoi()
  • atoi()도 마찬가지로 음수까지 커버가 된다.
#include <string>
#include <vector>

using namespace std;

int solution(string s) {
    int answer = stoi(s);
    return answer;
}
profile
Developer & PhotoGrapher

0개의 댓글