두 문자열 간의 차이 파악 | LeetCode 24일차

517 단어
문제.

Given two strings s and t which consist of only lowercase letters.


문자열 t는 랜덤으로 카드를 씻는 문자열s로 생성된 다음 랜덤으로 알파벳을 추가합니다.
t에 추가된 알파벳을 찾습니다.
솔루션 -
from collections import Counter
class Solution:
    def findTheDifference(self, s: str, t: str) -> str:
        c1 = Counter(s)
        c2 = Counter(t)
        for k2, v2 in c2.items():
            v1 = c1.get(k2, 0)
            if v1 != v2:
                return k2

좋은 웹페이지 즐겨찾기