[프로그래머스]서울에서 김서방 찾기 jyukki included in 프로그래머스 2019-12-18 55 words One minute Contents https://programmers.co.kr 풀이: string 배열 seoul의 원소 중 “Kim"의 위치를 찾아 반환한다. 코드: 사용언어 : c++ 1 2 3 4 5 6 7 8 9 10 #include <string> #include <vector> using namespace std; string solution(vector<string> seoul) { for (int i = 0;i < seoul.size();i++) if (seoul[i] == "Kim") return "김서방은 " + to_string(i) + "에 있다"; } Please enable JavaScript to view the comments powered by Disqus.