Programers : 서울에서 김서방 찾기 (find)
2656 단어 level1PROGRAMERSPROGRAMERS
특정 문자열 찾기
string.find()
은 문자열 내에 특정 문자열을 찾는 것이기 때문에 쓸 수 없다.
<algorithm>
에 있는 find()
를 사용해서 문제를 해결 할 수 있다
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
string solution(vector<string> seoul) {
int idx = find(seoul.begin(), seoul.end(), "Kim") - seoul.begin();
string answer = "김서방은 " + to_string(idx) + "에 있다";
return answer;
}
- 원하는 문자열을 입력한 뒤 seoul.begin() 을 빼주면 인덱스를 구할 수 있다고 한다 (참조함)
Author And Source
이 문제에 관하여(Programers : 서울에서 김서방 찾기 (find)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@neity16/Programers-서울에서-김서방-찾기-find
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
string.find()
은 문자열 내에 특정 문자열을 찾는 것이기 때문에 쓸 수 없다.<algorithm>
에 있는find()
를 사용해서 문제를 해결 할 수 있다
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
string solution(vector<string> seoul) {
int idx = find(seoul.begin(), seoul.end(), "Kim") - seoul.begin();
string answer = "김서방은 " + to_string(idx) + "에 있다";
return answer;
}
- 원하는 문자열을 입력한 뒤 seoul.begin() 을 빼주면 인덱스를 구할 수 있다고 한다 (참조함)
Author And Source
이 문제에 관하여(Programers : 서울에서 김서방 찾기 (find)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@neity16/Programers-서울에서-김서방-찾기-find저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)