牛客網編程練習(華爲機試在線訓練)-----字串的鏈接最長路徑查找

題目描述

給定n個字符串,請對n個字符串按照字典序排列。

輸入描述:

輸入第一行爲一個正整數n(1≤n≤1000),下面n行爲n個字符串(字符串長度≤100),字符串中只含有大小寫字母。

輸出描述:

數據輸出n行,輸出結果爲按照字典序排列的字符串。
示例1

輸入

9
cap
to
cat
card
two
too
up
boat
boot

輸出

boat
boot
cap
card
cat
to
too
two
up

Python code:

n = int(input())
str_array = []
for i in range(n):
    str_array.append(input().strip())
str_array = sorted(str_array)
for j in range(n):
    print(str_array[j])

相關文章
相關標籤/搜索