BOJ - 1181

주의·2024년 1월 24일
0

boj

목록 보기
106/214

백준 문제 링크
단어 정렬

❓접근법

  1. 단어를 받을 리스트 words에 단어를 넣어주고, 중복을 제거한다.
  2. sorted 함수를 이용해 길이와 사전 순으로 정렬한 뒤 출력한다.

👌🏻코드

N = int(input())

words = []
for _ in range(N):
    words.append(input())
    
words = list(set(words))

words = sorted(words, key = lambda x : (len(x), x))

for i in words:
    print(i)

0개의 댓글