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
- Data Structure
- Tree
- 파이썬
- simulation
- Counting
- 자바
- implement
- Class
- Binary Tree
- database
- geometry
- string
- sorting
- greedy
- 구현
- Math
- Stack
- two pointers
- array
- 코딩테스트
- bit manipulation
- java
- Matrix
- Method
- Number Theory
- SQL
- dynamic programming
- 코테
- hash table
- Binary Search
Archives
- Today
- Total
코린이의 소소한 공부노트
[LeetCode/Easy] 884. Uncommon Words from Two Sentences 본문
1. Input
1) 문자열 s1
2) 문자열 s2
2. Output
1) s1과 s2에서 중복되지 않는 단어를 담은 문자열 배열
- 순서는 상관 없다.
3. Constraint
1) 1 <= s1.length, s2.length <= 200
2) s1과 s2는 영어 소문자와 공백 문자로 이루어져 있다.
3) 단어는 공백 문자 1개로 분리되어 있고, 불필요한 공백 문자는 존재하지 않는다.
4. Example
Input: s1 = "this apple is sweet", s2 = "this apple is sour" -> Output: ["sweet","sour"]
Input: s1 = "apple apple", s2 = "banana" -> Output: ["banana"]
5. Code
1) 첫 코드(2022/12/30)
import java.util.*;
HashMap<String,Integer> m = new HashMap<String,Integer>();
String[] words = s1.split(" ");
for(String w : words){
if(!m.containsKey(w)) m.put(w,1);
else m.replace(w, m.get(w)+1);
}
words = s2.split(" ");
for(String w : words){
if(!m.containsKey(w)) m.put(w,1);
else m.replace(w, m.get(w)+1);
}
ArrayList<String> list = new ArrayList<String>();
Set set = m.entrySet();
Iterator it = set.iterator();
while(it.hasNext()){
Map.Entry e = (Map.Entry)it.next();
if((int)e.getValue()==1) list.add((String)e.getKey());
}
return list.toArray(new String[] {});
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 1678. Goal Parser Interpretation (0) | 2023.01.02 |
---|---|
[LeetCode/Easy] 1672. Richest Customer Wealth (0) | 2023.01.02 |
[LeetCode/Easy] 868. Binary Gap (0) | 2022.12.30 |
[LeetCode/Easy] 844. Backspace String Compare (0) | 2022.12.29 |
[LeetCode/Easy] 1662. Check If Two String Arrays are Equivalent (0) | 2022.12.29 |