Python// Insertion sort using lambda and reduce filter map functions

前端 未结 0 1440
無奈伤痛
無奈伤痛 2020-12-01 01:54
sort = [4,3,2,6,8]
def insert(sort):
    return reduce(lambda x,y: list([str(x)] if str(x) < str(y) else [str(y)]) + list(x), sort)

print(insert(sort))


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题