Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
native_split_list solution in Uncategorized category for Split List by Jon_Red
def split_list(i:list)->list:return [i[:-(-len(i)//2)],i[-(-len(i)//2):]]
April 21, 2020