외계어 사전 : 문제 링크
string 헤더의 find() 함수 사용법
str.find("찾는 문자")
=> 찾는 문자를 str 문자열 내에서 찾았다면 해당 문자열의 시작 위치를, 그렇지 않을 경우 npos를 return
#include <string>
#include <vector>
using namespace std;
int solution(vector<string> spell, vector<string> dic) {
int answer = 0;
for(int i = 0; i < dic.size(); i++) {
int check = 0;
for(int j = 0; j < spell.size(); j++) {
if(dic[i].find(spell[j]) == -1) {
answer = 2;
check = -1;
break;
}
}
if(check == 0) return 1;
}
return answer;
}
글 잘 봤습니다, 감사합니다.