728x90
반응형
https://www.acmicpc.net/problem/11656
보자마자 for문으로 index 길이로 자른뒤 정렬 후 출력하는 코드 작성
s = input()
arr = []
for i in range(len(s)):
arr.append(s[i:])
arr.sort()
for i in arr:
print(i)
완성
728x90
반응형
'알고리즘' 카테고리의 다른 글
[백준] 1026번: 보물 - python (0) | 2024.03.25 |
---|---|
[백준] 10825번: 국영수 - python (0) | 2024.03.25 |
[백준] 10814번: 나이순 정렬 - python (0) | 2024.03.25 |
[백준] 2910번: 빈도 정렬 - python (0) | 2024.03.21 |
[백준] 1003번: 피보나치 함수 - python (0) | 2024.03.20 |