티스토리 뷰
title: "문자열을 정수로 바꾸기"
category: 프로그래머스[Level-1]
tags: [C++, JavaScript, 프로그래머스]
date: "2021-01-20"
문제 링크
C++
#include <string>
#include <vector>
using namespace std;
int solution(string s) {
int answer = 0;
answer = stoi(s);
return answer;
}
JavaScript
function solution(s) {
var answer = 0;
answer = s * 1;
return answer;
}
728x90
반응형
'Programmers Solutions > Level-1' 카테고리의 다른 글
[프로그래머스] 내적 (0) | 2021.02.02 |
---|---|
[프로그래머스] 수박수박수박수박수박수? (0) | 2021.02.02 |
[프로그래머스] 소수 찾기 (0) | 2021.02.02 |
[프로그래머스] 서울에서 김서방 찾기 (0) | 2021.02.02 |
[프로그래머스] 문자열 다루기 기본 (0) | 2021.02.02 |
댓글