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))