lv0_코딩테스트 입문_배열의 유사도
by 브이담곰https://school.programmers.co.kr/learn/courses/30/lessons/120903
✔️ 유형 : STL(algorithm, string)
✔️ 문제 풀이: find탐색을 통해 같은 문자가 있을 경우 카운트 업을 한다.
for_each(s2.begin(), s2.end(),
[&](string s) { if (find(s1.begin(), s1.end(), s) != s1.end()) answer++; });
⬇️코드보기
더보기
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
int solution(vector<string> s1, vector<string> s2) {
int answer = 0;
for_each(s2.begin(), s2.end(),
[&](string s) { if (find(s1.begin(), s1.end(), s) != s1.end()) answer++; });
return answer;
}
'Coding Test > Programmers' 카테고리의 다른 글
lv0_코딩테스트연습_숫자 찾기 (0) | 2023.01.27 |
---|---|
lv0_코딩테스트 입문_제곱수 판별하기 (0) | 2023.01.26 |
✨lv0_코딩테스트 입문_숨어있는 숫자의 덧셈(2) (0) | 2023.01.26 |
lv0_코딩테스트 입문_소인수분해 (0) | 2023.01.24 |
✨lv0_코딩테스트 입문_모스부호(1) (0) | 2023.01.24 |
블로그의 정보
농담곰담곰이의곰담농
브이담곰