Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
split_point solution in Clear category for Split List by Filip_Zwolski
def split_list(items: list) -> list:
# your code here
split_point = (len(items) // 2 ) + (len(items) % 2)
return [items[:split_point], items[split_point:]]
Aug. 31, 2021