[백준 알고리즘] 1181번 단어 정렬 (Python)언어, 알고리즘 공부/백준2020. 4. 29. 16:32
Table of Contents
<Python>
import sys
n = int(input())
str_list = []
for i in range(n):
str_list.append(sys.stdin.readline())
str_list = list(set(str_list))
str_list.sort(key=lambda x: (len(x), x))
print("".join(str_list))
▼링크
https://www.acmicpc.net/problem/1181
반응형
'언어, 알고리즘 공부 > 백준' 카테고리의 다른 글
[백준 알고리즘] 2108번 통계학 (Python) (0) | 2020.04.29 |
---|---|
[백준 알고리즘] 10814번 나이순 정렬 (Python) (0) | 2020.04.29 |
[백준 알고리즘] 10989번 수 정렬하기 3 (Python) (0) | 2020.04.29 |
[백준 알고리즘] 11651번 좌표 정렬하기 2(Python) (0) | 2020.04.29 |
[백준 알고리즘] 11650번 좌표 정렬하기 (Python) (0) | 2020.04.29 |
@쿠몬e :: ˚˛˚ * December☃ 。* 。˛˚
전공 공부 기록 📘
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!