class Solution {
public int solution(String[] s1, String[] s2) {
int answer = 0;
for(int i=0; i<s1.length; i++) {
for(int j=0; j<s2.length; j++) {
if(s1[i].equals(s2[j])) {
answer += 1;
}
}
}
return answer;
}
}
.equals로 문자열 비교
'JAVA STUDY > 프로그래머스' 카테고리의 다른 글
프로그래머스 배열 원소의 길이 문제 (0) | 2023.12.14 |
---|---|
프로그래머스 옷가게 할인 받기 문제 (0) | 2023.12.14 |
프로그래머스 피자 나눠 먹기 (1) 문제 (1) | 2023.12.11 |
프로그래머스 특정 문자 제거하기 문제 (0) | 2023.12.11 |
프로그래머스 모음 제거 문제 (0) | 2023.12.11 |