输入整型数组和排序标识,对其元素按照升序或降序进行排序#

输入整型数组和排序标识,对其元素按照升序或降序进行排序

https://www.nowcoder.com/practice/dd0c6b26c9e541f5b935047ff4156309

n=int(input())                # 必须有int()函数,否则报错
series=input()
sort_direction=int(input())   # 必须有int()函数,否则报错
l=[int(i) for i in series.split()]
if sort_direction==0:
    l.sort()
    l_str=map(str,l)
    print(' '.join(l_str))
elif sort_direction==1:
    l.sort(reverse=True)
    l_str=map(str,l)
    print(' '.join(l_str))

全部评论

相关推荐

hso_:哈哈哈哈哈哈我没offer一样在同一道题开喷了
投递深圳同为数码等公司10个岗位
点赞 评论 收藏
分享
10-25 00:32
香梨想要offer:感觉考研以后好好学 后面能乱杀,目前这简历有点难
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务