[Programmers] 서울에서 김서방 찾기

프로그래머스 level1

Posted by kyoungIn on January 4, 2019

서울에서 김서방 찾기

문제 링크 : (https://programmers.co.kr/learn/courses/30/lessons/12919)

풀이

1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <string>
#include <vector>

using namespace std;

string solution(vector<string> seoul) {
    string answer = "김서방은 ";
    for(int i=0;i<(int)seoul.size();i++){
        if(seoul[i]=="Kim"){
            answer +=to_string(i);
            }
    }
    return answer+"에 있다";
}