単語の検索
2678 ワード
作成日:2022年1月28日午後7:12
インプリメンテーションコード
# 단어 찾기 (해쉬)
import sys
sys.stdin = open("input.txt", "rt")
n = int(input())
n = 2*n - 1
dic = {}
for _ in range(n):
word = input()
if word in dic:
dic[word] += 1
else:
dic[word] = 1
for key, val in dic.items():
if val == 1:
print(key)
Reference
この問題について(単語の検索), 我々は、より多くの情報をここで見つけました https://velog.io/@lsj8706/단어찾기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol