반응형
서울에서 김서방 찾기
문제
문제 설명
String형 배열 seoul의 element중 Kim의 위치 x를 찾아, 김서방은 x에 있다는 String을 반환하는 함수, solution을 완성하세요. seoul에 Kim은 오직 한 번만 나타나며 잘못된 값이 입력되는 경우는 없습니다.
제한 사항
- seoul은 길이 1 이상, 1000 이하인 배열입니다.
- seoul의 원소는 길이 1 이상, 20 이하인 문자열입니다.
- Kim은 반드시 seoul 안에 포함되어 있습니다.
문제 풀이
seoul 배열에서 algorithm의 find()를 사용하여 iter을 받은 다음 distance()를 사용하여 위치를 iterrator에서 int로 받는다.
이때 distance()는 find(seoul.begin(),seoul.end(),"Kim") - seoul.begin()으로 대체 할 수 있다.
그 다음 string 클래스의 to_string을 사용하여 문자로 바꾸어 answer에 넣어준다.
c++ 코드
1 2 3 4 5 6 7 8 9 10 11 12 | #include <string> #include <vector> #include <algorithm> using namespace std; string solution(vector<string> seoul) { string answer = ""; answer = "김서방은 "+to_string(distance(seoul.begin(),find(seoul.begin(),seoul.end(),"Kim"))) + "에 있다"; //to_string(find(seoul.begin(),seoul.end(),"Kim") - seoul.begin()) return answer; } | cs |
반응형
'군대에서 한것 > 프로그래머스' 카테고리의 다른 글
<프로그래머스> Level3 가장 먼 노드 (0) | 2019.01.26 |
---|---|
<프로그래머스> Level1 문자열 내림차순으로 배치하기 (0) | 2019.01.18 |
<프로그래머스> Level1 문자열 내 마음대로 정렬하기 (1) | 2019.01.18 |
<프로그래머스> Level1 나누어 떨어지는 숫자 배열 (0) | 2019.01.18 |
<프로그래머스> Level1 가운데 글자 가져오기 (0) | 2019.01.18 |