牛客783033944号
牛客783033944号
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
牛客783033944号的博客
全部文章
(共1篇)
题解 | #输入整型数组和排序标识,对其元素按照升序或降序进行排序#
def func(i,lst,bol): i1= int(i) bol1 = bool(int(bol)) lst1 = list(map(int,lst)) lst1.sort(reverse= bol1) lst2 = [ str(x) for x in ...
Python3
2021-09-28
9
994