leetcode讲解--884. 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:

  1. 0 <= A.length <= 200
  2. 0 <= B.length <= 200
  3. A and B both contain only spaces and lowercase letters.

题目地址

讲解

用hashmap记录每一个单词

Java代码

class Solution {
    private Map map = new HashMap<>();
    public String[] uncommonFromSentences(String A, String B) {
        List result = new ArrayList<>();
        countString(A);
        countString(B);
        for(String key:map.keySet()){
            if(map.get(key)==1){
                result.add(key);
            }
        }
        String[] str = new String[result.size()];
        return result.toArray(str);
    }
    
    private void countString(String A){
        int index=0;
        for(int i=0;i

你可能感兴趣的:(字符串,算法,leetcode)