牛客953087208号
牛客953087208号
题解
题解 | #字符串排序#
全部文章
题解
归档
标签
去牛客网
登录
/
注册
题解 | #字符串排序#
277 浏览
0 回复
2021-11-30
牛客953087208号
+关注
字符串排序
http://www.nowcoder.com/practice/5af18ba2eb45443aa91a11e848aa6723
s = int(input())
n = []
for i in range(int(s)):
if i <= int(s):
n.append(input())
m = '\n'.join(sorted(n))
print(m)
Python3
举报
收藏
赞
评论加载中...