반응형
SMALL
#include <string>
#include <vector>
using namespace std;
string solution(vector<string> seoul) {
string temp_answer = "김서방은 x에 있다";
string answer ="";
int temp;
for (int i = 0; i < seoul.size(); i++) {
if (seoul[i] == "Kim") {
temp = i;
}
}
for (int i = 0; i < temp_answer.size(); i++) {
if (temp_answer[i] == 'x') answer += to_string(temp);
else answer += temp_answer[i];
}
return answer;
}
반응형
LIST
'알고리즘 문제 풀이 > Programmers' 카테고리의 다른 글
탑 - 2단계 (C++) (0) | 2019.06.27 |
---|---|
주식가격 - 2단계 (C++) (0) | 2019.06.27 |
최대공약수와 최소공배수 - 1단계 (C++) (0) | 2019.06.26 |
이상한 문자 만들기 - 1단계 (C++) (0) | 2019.06.26 |
정수 내림차순으로 배치하기 - 1단계 (C++) (0) | 2019.06.26 |