두 문자열 간의 차이 파악 | LeetCode 24일차
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
Reference
이 문제에 관하여(두 문자열 간의 차이 파악 | LeetCode 24일차), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/skbhagat40/find-the-difference-between-two-strings-leetcode-day-24-1hi텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)