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
- Tree
- Matrix
- Math
- Counting
- Data Structure
- dynamic programming
- geometry
- 구현
- Binary Tree
- database
- implement
- 파이썬
- Method
- bit manipulation
- Binary Search
- Number Theory
- SQL
- java
- 자바
- greedy
- string
- simulation
- 코딩테스트
- two pointers
- Stack
- Class
- array
- sorting
- 코테
- hash table
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 2085. Count Common Words With One Occurrence 본문
1. Input
1) String[] words1
2) String[] words2
2. Output
1) words1과 word2에 공통적으로 나타나는 단어 중 각 배열에 1번씩만 나타나는 단어의 수를 반환
3. Constraint
1) 1 <= words1.length, words2.length <= 1000
2) 1 <= words1[i].length, words2[j].length <= 30
3) 두 배열의 단어들은 영어 소문자로 이루어져 있다.
4. Example
Input: words1 = ["leetcode","is","amazing","as","is"], words2 = ["amazing","leetcode","is"] -> Output: 2
설명: 두 배열에 모두 나타나는 단어는 "leetcode", “is", "amazing"의 세 단어이다.
- “leetcode": 두 배열에 각각 1번, 1번 나타나므로 OK
- "is": 두 배열에 각각 2번, 1번 나타나므로 X
- "amazing": 두 배열에 각각 1번, 1번 나타나므로 OK
- 따라서 2를 반환한다.
5. Code
1) 첫 코드(2023/06/21)
class Solution {
public int countWords(String[] words1, String[] words2) {
HashMap<String, Integer> m1 = new HashMap<>();
for(String s : words1)
m1.put(s, m1.getOrDefault(s,0)+1);
List<String> list1 = new ArrayList<>();
for(String s : m1.keySet())
if(m1.get(s)==1) list1.add(s);
HashMap<String, Integer> m2 = new HashMap<>();
for(String s : words2)
m2.put(s, m2.getOrDefault(s,0)+1);
List<String> list2 = new ArrayList<>();
for(String s : m2.keySet())
if(m2.get(s)==1) list2.add(s);
int count = 0;
for(String s : list1)
if(list2.contains(s)) count++;
return count;
}
}
- 10%, 24%
- 다시 풀어보고 싶은데 아이디어가..
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 2164. Sort Even and Odd Indices Independently (0) | 2023.06.21 |
---|---|
[LeetCode/Easy] 2144. Minimum Cost of Buying Candies With Discount (0) | 2023.06.21 |
[LeetCode/Easy] 1971. Find if Path Exists in Graph (0) | 2023.06.21 |
[LeetCode/Easy] 1957. Delete Characters to Make Fancy String (0) | 2023.06.21 |
[LeetCode/Easy] 1893. Check if All the Integers in a Range Are Covered (0) | 2023.06.20 |