Lchenglong
Lchenglong
题解
题解 | #字符串排序#
全部文章
题解
未归档(1)
归档
标签
去牛客网
登录
/
注册
题解 | #字符串排序#
349 浏览
0 回复
2022-01-04
Lchenglong
+关注
字符串排序
http://www.nowcoder.com/practice/5af18ba2eb45443aa91a11e848aa6723
Python 题解
n = int(input()) res = [input() for _ in range(n)] res.sort() print('\n'.join(res))
Python3
举报
收藏
赞
评论加载中...