지나가던 개발자
[Python] 백준 16499번(동일한 단어 그룹화하기) 문제 풀이 본문
N = int(input())
groups = []
for i in range(N):
word = sorted(list(input()))
if word not in groups:
groups.append(word)
print(len(groups))
'PS > Python' 카테고리의 다른 글
[Python] 백준 14495번(피보나치 비스무리한 수열) 문제 풀이 (0) | 2022.12.07 |
---|---|
[Python] 백준 1526번(가장 큰 금민수) 문제 풀이 (0) | 2022.12.05 |
[Python] 백준 11728번(배열 합치기) 문제 풀이 (0) | 2022.12.04 |
[Python] 백준 11651번(좌표 정렬하기 2) 문제 풀이 (0) | 2022.12.03 |
[Python] 백준 11723번(집합) 문제 풀이 (0) | 2022.12.02 |
Comments