← Back to List
16499번: 동일한 단어 그룹화하기 ↗
Solutions
Python 3
78 B | 78 chars
print(len(set([''.join(sorted(list(input()))) for _ in range(int(input()))])))