프로그래머스 12925 문자열을 정수로 바꾸기

1 개요[ | ]

프로그래머스 12925 문자열을 정수로 바꾸기

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(string s) {
    return stoi(s);
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}