Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- sorting
- dynamic programming
- array
- greedy
- simulation
- string
- Matrix
- two pointers
- geometry
- 자바
- Data Structure
- Math
- Tree
- 구현
- 파이썬
- Binary Tree
- 코테
- java
- 코딩테스트
- Number Theory
- hash table
- Stack
- SQL
- Method
- database
- Binary Search
- Class
- Counting
- bit manipulation
- implement
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 배열의 유사도 본문
1. Input
1) 문자열 배열 s1, s2
2. Output
1) 공통으로 갖는 원소의 개수
3. Constraint
1) 1 <= s1, s2의 길이 <= 100
2) 1 <= s1, s2의 원소의 길이 <= 10
3) s1과 s2의 원소는 알파벳 소문자로만 이루어져 있다.
4) s1과 s2는 각각 중복된 원소가 없다.
4. Example
Input: s1={“a”,“b”,“c”}, s2={“b”,“p”,“c”,“d”} -> Output: 2
설명: “b”와 “c”가 공통이므로 2를 반환
5. Code
1) 첫 코드(2022/10/19)
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++;
break; // 중복 원소를 갖지 않으므로 더 찾을 필요 없음
}
}
return answer;
2) 다른 방식으로 수정한 코드(2022/10/31)
ArrayList<String> set1 = new ArrayList();
ArrayList<String> set2 = new ArrayList();
for(int i=0 ; i<s1.length ; i++)
set1.add(s1[i]);
for(int i=0 ; i<s2.length ; i++)
set2.add(s2[i]);
set1.retainAll(set2);
return set1.size();
- 1번 코드가 2번 코드보다 훨씬 빠름
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] n의 배수 고르기 (0) | 2022.11.01 |
---|---|
[프로그래머스/Lv.0] 숫자 찾기 (0) | 2022.11.01 |
[프로그래머스/Lv.0] 문자열 계산하기 (0) | 2022.10.31 |
[프로그래머스/Lv.0] 가장 큰 수 찾기 (0) | 2022.10.31 |
[프로그래머스/Lv.0] 편지 (0) | 2022.10.31 |