题解 | #对其元素按照升序或降序进行排序#
输入整型数组和排序标识,对其元素按照升序或降序进行排序
https://www.nowcoder.com/practice/dd0c6b26c9e541f5b935047ff4156309
s1 = input() s2 = map(int, input().split()) s3 = input() # s4 = sorted(list(s2), reverse=True) # s5 = " ".join(list(map(str, s4))) if s3 == "0": print(" ".join(map(str, sorted(s2)))) if s3 == "1": print(" ".join(map(str, sorted(s2, reverse=True))))
考察点:
map()
join()
sorted()
我犯错的地方:
if里要处理的内容,我写到外面去了,导致处理了多次。应该写到if里面,给他赋值给变量即可
#数据仓库与数据分析实习#OD专栏练习梳理 文章被收录于专栏
OD专栏练习梳理