华为机试14-字符串按照字典序排列

题目描述
给定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

 

参考:

排序

n = int(input())
num = []
for _ in range(n):
    num.append(input())
res = sorted(num)    #直接排序
for s in res:
    print(s)

执行结果: 答案正确:恭喜!您提交的程序通过了所有的测试用例 用例通过率: 100.00% 运行时间: 24ms 占用内存:3324KB

posted @ 2020-08-21 10:22  Andy_George  阅读(316)  评论(0编辑  收藏  举报