Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Landminus solution in Creative category for Split List by veky
def split_list(items: list) -> list:
half = -len(items) // 2
return items[:-half], items[-half:]
Jan. 5, 2020
Comments: