지나가던 개발자

[Python] 백준 16499번(동일한 단어 그룹화하기) 문제 풀이 본문

PS/Python

[Python] 백준 16499번(동일한 단어 그룹화하기) 문제 풀이

KwonYongHyeon 2022. 12. 5. 16:46

 

N = int(input())
groups = []
for i in range(N):
    word = sorted(list(input()))
    if word not in groups:
        groups.append(word)
print(len(groups))
Comments