#include <string>
#include <vector>
using namespace std;
string solution(vector<string> seoul) {
int idx;
for(int i=0; i<seoul.size(); i++)
{ if(seoul[i].compare("Kim")==0) //두 string비교. 같으면 0, 사전 편찬순 앞이면 양수, 뒤면 음수 반환.
{
idx =i;
break;
}
}
string answer = "김서방은 "+to_string(idx)+"에 있다";
return answer;
}
'코딩테스트 > 프로그래머스' 카테고리의 다른 글
[Level 1][C++] 시저 암호 (0) | 2024.09.27 |
---|---|
[Level 1][C++] 문자열 내림차순으로 배치하기 (0) | 2024.09.27 |
[Level 1][C++] 수박수박수박수박수박수? (0) | 2024.09.27 |
[Level 1][C++] 나누어 떨어지는 숫자 배열 (0) | 2024.09.27 |
[Level 1][C++] 문자열 내 p와 y의 개수 (0) | 2024.09.27 |