반응형
programmers.co.kr/learn/courses/30/lessons/12919
#include <string>
#include <vector>
using namespace std;
string solution(vector<string> seoul) {
string answer = "김서방은 ";
for(int i = 0;i<seoul.size(); i++)
if(seoul[i] == "Kim"){
answer += to_string(i);
answer+= "에 있다";
}
return answer;
}
to_string
반응형
'IT > 알고리즘' 카테고리의 다른 글
52] 프로그래머스 정수 제곱근 판별 (0) | 2020.10.15 |
---|---|
51] 프로그래머스 콜라츠 추측 (0) | 2020.10.14 |
49★] 프로그래머스 시저 암호 (0) | 2020.09.17 |
48] 프로그래머스 문자열을 정수로 바꾸기 (0) | 2020.09.16 |
47] 프로그래머스 K번째수 (0) | 2020.09.15 |
댓글