관리 메뉴

솜씨좋은장씨

[leetCode] 884. Uncommon Words from Two Sentences (Python) 본문

Programming/코딩 1일 1문제

[leetCode] 884. Uncommon Words from Two Sentences (Python)

솜씨좋은장씨 2020. 7. 31. 21:24
728x90
반응형

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.

Solution

from collections import Counter

class Solution:
    def uncommonFromSentences(self, A: str, B: str) -> List[str]:
        array = A.split(" ") + B.split(" ")
        
        cnt = list(Counter(array).items())
        
        answer = [item[0] for item in cnt if item[1] == 1]
        
        return answer

 

 

SOMJANG/CODINGTEST_PRACTICE

1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.

github.com

 

Comments