Uncommon Words from Two Sentences
Posted nickyye
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Uncommon Words from Two Sentences相关的知识,希望对你有一定的参考价值。
https://leetcode.com/problems/uncommon-words-from-two-sentences
We are given two sentences A
and B
. (A sentence is a string of space separated words. Each word consists only of lowercase letters.)
A word is uncommon if it appears exactly once in one of the sentences, and does not appear in the other sentence.
Return a list of all uncommon words.
You may return the list in any order.
Example 1:
Input: A = "this apple is sweet", B = "this apple is sour"
Output: ["sweet","sour"]
Example 2:
Input: A = "apple apple", B = "banana"
Output: ["banana"]
Note:
0 <= A.length <= 200
0 <= B.length <= 200
A
andB
both contain only spaces and lowercase letters.
解题思路:
简单但是蛋疼的一道题目。读题目后发现,这里的uncommon,其实就是在A和B里面加起来只出现一次的。
先用map统计次数,然后拿出只出现一次的词,最后形成array。
class Solution { public String[] uncommonFromSentences(String A, String B) { Map<String, Integer> map = new HashMap<String, Integer>(); String[] a1 = A.split(" "); String[] b1 = B.split(" "); for (String str : a1) { map.put(str, map.getOrDefault(str, 0) + 1); } for (String str : b1) { map.put(str, map.getOrDefault(str, 0) + 1); } List<String> list = new ArrayList<String>(); for (Map.Entry<String, Integer> entry : map.entrySet()) { if (entry.getValue() == 1) { list.add(entry.getKey()); } } String[] res = new String[list.size()]; for (int i = 0; i < list.size(); i++) { res[i] = list.get(i); } return res; } }
有人写的更简洁,逻辑是一样的
https://leetcode.com/problems/uncommon-words-from-two-sentences/discuss/158967/C%2B%2BJavaPython-Easy-Solution-with-Explanation
以上是关于Uncommon Words from Two Sentences的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 884 Uncommon Words from Two Sentences 解题报告
[LeetCode] 884. Uncommon Words from Two Sentences_Easy tag: Hash Table
LC 127. Word Ladder (two end bfs)
布斯乘法Booth's multiplication algorithm from wikipedia