본문 바로가기

알고리즘 문제 풀이/Programmers

서울에서 김서방 찾기 - 1단계 (C++)

반응형
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