Skip to content

Commit

Permalink
Create 11656.py
Browse files Browse the repository at this point in the history
  • Loading branch information
park1997 committed Feb 28, 2022
1 parent 54f6c83 commit a745080
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions BOJ_11xxx/11656.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# 접미사 배열
s = input()
tmp=[s[i:] for i in range(len(s))]
tmp.sort()
for i in tmp:
print(i)

0 comments on commit a745080

Please sign in to comment.