Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Split List by Oleksii-Levenets
def split_list(items: list) -> list:
# your code here
import math
l = math.ceil(len(items)/2)
r = [0, 1]
s_l1 = [i for i in items[:l]]
r[0] = s_l1
s_l2 = [i for i in items[l:]]
r[1] = s_l2
return r
if __name__ == '__main__':
print("Example:")
print(split_list([1, 2, 3, 4, 5, 6]))
# These "asserts" are used for self-checking and not for an auto-testing
assert split_list([1, 2, 3, 4, 5, 6]) == [[1, 2, 3], [4, 5, 6]]
assert split_list([1, 2, 3]) == [[1, 2], [3]]
assert split_list([1, 2, 3, 4, 5]) == [[1, 2, 3], [4, 5]]
assert split_list([1]) == [[1], []]
assert split_list([]) == [[], []]
print("Coding complete? Click 'Check' to earn cool rewards!")
Oct. 25, 2020