Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Simple solution in Clear category for Split List by thealfest1
def split_list(items: list) -> list:
i = len(items)//2 + len(items)%2
return items[:i], items[i:]
March 19, 2020