[백준] #1181 단어 정렬 python
2022. 12. 27. 20:51
https://www.acmicpc.net/problem/1181
📕 설명 📕
길이를 받아오기 위해서 50개짜리 배열에 숫자에 맞게 append 하여 길이에 맞게 정렬하였다.
🧑🏻💻 나의 풀이 🧑🏻💻
import sys
N = int(input())
src = []
src_fit = [[]for i in range(50)]
for i in range(N):
src.append(sys.stdin.readline().rstrip())
src.sort()
for i in src:
if i in src_fit[len(i)-1]:
continue
src_fit[len(i)-1].append(i)
for i in src_fit:
for j in i:
print(j)
'Programming > Algorithm' 카테고리의 다른 글
[백준] #18870 좌표 압축 python (0) | 2022.12.27 |
---|---|
[백준] #10814 나이순 정렬 python (0) | 2022.12.27 |
[백준] #11651 좌표 정렬하기 2 python (0) | 2022.12.27 |
[백준] #11650 좌표 정렬하기 python (0) | 2022.12.27 |
[백준] #1427 소트인사이드 python (0) | 2022.12.27 |