728x90
반응형
#include <string>
#include <vector>
using namespace std;
string solution(vector<string> seoul) {
string answer = "";
for(string & s : seoul) {
if(s == "Kim") {
answer = "김서방은 " + to_string(&s - &*seoul.begin()) + "에 있다";
break;
}
}
return answer;
}
728x90
반응형
'코딩 테스트 > 프로그래머스' 카테고리의 다른 글
[Level 1, C] 콜라츠 추측 (0) | 2022.07.04 |
---|---|
[Level 1, C++] 행렬의 덧셈 (0) | 2022.07.04 |
[Level 1, C++] 문자열 다루기 기본 (0) | 2022.07.03 |
[Level 1, C++] 나누어 떨어지는 숫자 배열 (0) | 2022.07.03 |
[Level 1, C++] 부족한 금액 계산하기 (0) | 2022.07.03 |