반응형
https://programmers.co.kr/learn/courses/30/lessons/12919
글쓴이의 답
개인적인 풀이 임으로
이것보다 더 좋은 알고리즘은 많음...
이렇게도 풀이하는구나.. 공유하기 위해 올림...
#include <string>
#include <vector>
#include <algorithm>
#include <iostream>
using namespace std;
string solution(vector<string> seoul) {
string answer = "김서방은 ";
vector<string>::iterator it = find(seoul.begin(), seoul.end(), "Kim");
answer += std::to_string(it- seoul.begin());
answer += "에 있다";
return answer;
}
꾸준히 하다보면 실력이 늘겠지..
반응형
'코딩테스트' 카테고리의 다른 글
[프로그래머스][C++] 수박수박수박수박수박수? (0) | 2022.03.19 |
---|---|
[프로그래머스][C++] 소수 찾기 (0) | 2022.03.19 |
[프로그래머스][C++] 문자열 다루기 기본 (0) | 2022.03.19 |
[프로그래머스][C++] 문자열 내림차순으로 배치하기 (0) | 2022.03.19 |
[프로그래머스][C++] 문자열 내 p와 y의 개수 (0) | 2022.03.19 |