题解 | #输入整型数组和排序标识,对其元素按照升序或降序进行排序#
输入整型数组和排序标识,对其元素按照升序或降序进行排序
http://www.nowcoder.com/practice/dd0c6b26c9e541f5b935047ff4156309
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 lst1 ] str1 = " " return str1.join(lst2) i = input() lst = input().split() bol = input() print(func(i,lst,bol))