from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
num_cnt = dict()
for number in numbers:
if number not in num_cnt:
num_cnt[number] = 0
num_cnt[number] += 1
return [number for number in numbers if num_cnt[number] == 1]
[[[]], [[1, 2, 3, 4]], [[1, 2, 3, 2, 4, 3, 5]]]
[[[1, 1, 2, 2, 3, 3, 4, 4]], [[1, 2, 3, 4, 5, 6, 7, 8, 9]], [[1, 1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 4]], [[2, 2, 2, 2]], [[1, 1, 1, 1]], [[-1, 0, 1, 0, -1, 1]], [[1, 1, 1, 1, 1]], [[1, 2, 3, 4, 5, 6, 6, 7, 8]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 9, 9]], [[1, 2, 3, 4, 4, 6, 7, 8, 9]], [[1, 2, 3, 4, 6, 7, 8, 9]], [[1, 2, 3, 4, 4, 7, 8, 9]], [[2, 2, 2, 2, 2]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 8, 9, 9]], [[1, 2, 3, 4, 6, 8, 9]], [[2, 2, 4]], [[1, 2, 3, 4, 5, 6, -1, 7, 8, 9, 8, 9, 9]], [[1, 2, 3, 4, 4, 6, 7, 8, 4, 9]], [[2, 3, 4, 6, 8, 9]], [[1, 2, 3, 4, 4, 7, 8, 9, 2]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 7, 9, 9, 9]], [[1, 2, 3, 4, 4, 6, 7, 8, 9, 4]], [[1, 1, 1, 1, 1, 1]], [[1, 1, 2, 2, 3, 3, 4, 4, 3]], [[1, 2, 3, 4, 4, 6, 1, 7, 8, 9, 4]], [[2, 2, 2]], [[1, 2, 4, 6, 7, 8, 2]], [[1, 1, 1]], [[2, 1, 2, 1, 1, 1]], [[1, 2, 3, 5, 6, 7, 8, 9, 8, 9, 9]], [[1, 1, 1, 2, 2, 3, 4, 4, 4]], [[1, 2, 3, 4, 4, 7, 8, 3, 9, 2]], [[1, 1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 4, 1, 3, 1]], [[2, 1, 2, 1, 1]], [[1, 1]], [[1, 1, 1, 1, 2, 2, 3, 3, 4, 4, 1]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 6, 8, 9, 9]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 9]], [[1, 2, 3, 4, 6, 7, 8, 9, 7, 9, 9, 9]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 3]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 7, 9, 9, 9, 9]], [[2, 1, 2, 3, 1, 1]], [[1, 2, 3, 4, 4, 6, 7, 8, 9, 7]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 9, 9, 1]], [[1, 1, 2, 2, 3, 4, 4]], [[1, 1, 6, 2, 2, 3, 4, 4]], [[1, 3, 4, 5, 6, 7, 8, 9, 9, 4, 9]], [[9, 1, 2, 9, 3, 8, 6, 8, 9]], [[1, 1, 1, 1, 3, 2, 2, 3, 3, 4, 4, 4, 1, 3, 1]], [[1, 1, 1, 1, 2, 3, 3, 4, 4, 1]], [[1, 2, 3, 4, 5, 6, 7, 8, 10, 6, 8, 9, 9]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 6, 8, 9, 9, 8]], [[1, 2, 3, 4, 5, 6, 7, 8, 7, 9, 7, 9, 9, 9, 8]], [[1, 2, 4, 6, 7, 8]], [[1, 3, 4, 5, 6, -1, 7, 8, 9, 8, 9, 9]], [[-1, 0, 0, -1, 1]], [[1, 2, 4, 3, 4, 5, 6, 7, 8, 9, 6, 8, 9, 9]], [[1, 1, 1, 1, 3, 2, 2, 3, 3, 4, 3, 4, 1, 3, 1, 3]], [[1, 2, 2, 3, 4, 4, 7, 8, 2]], [[2, 1, 2, 2, 1, 1, 1]], [[1, 2, 4, 7, 8]], [[1, 2, 3, 4, 5, 6, 7, 8, 10, 6, 8, 9, 9, 9]], [[1, 2, 3, 4, 5, 6, 7, 4, 9, 9, 9, 9]], [[1, 2, 3, 4, 5, 6, 7, 8, 6, 8, 9, 9, 9]], [[1, 0, 2, 2, 3, 3, 4, 4]], [[-1, 0, 10, -1, 1]], [[-1, 0, 10, -1, -1]], [[2, 1, 3, 4, 5, 6, 3, 7, 8, 9, 9, 4, 9, 5]], [[1, 2, 3, 4, 4, 0, 8, 9]], [[1, 1, 1, 1, 3, 2, 2, 3, 3, 4, 4, 4, 1, 3, 7, 1]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 9, 9, 5]], [[1, 2, 3, 4, 4, 7, 8, 9, 2, 9]], [[2, 2, 3, 2, 10]], [[2, 1, 1, 1, 1]], [[1, 2, 3, 4, 5, 6, 7, 8, 7, 9, 7, 9, 9, 9, 8, 5]], [[2, 9, 2, 3, 2, 10]], [[1, 2, 4, 3, 4, 5, 6, 7, 8, 9, 6, 8, 9, 9, 6, 3]], [[1, 2, 3, 4, 6, 8, 9, 8]], [[1, 2, 3, 4, 4, 3, 6, 7, 8, 9, 4]], [[1, 2, 4, 5, 6, 7, 8, 7, 9, 7, 9, 8, 9, 9, 8]], [[1, 2, 3, 4, 6, 7, 9]], [[1, 2, 3, 4, 4, 6, 1, 7, 8, 3, 4]], [[1, 2, 3, 4, 4, 6, 7, 8, 9, 8, 9, 9]], [[1, -1, 3, 4, 5, 6, 7, 4, 9, 9, 9, 9]], [[2, 1, 1, 1, 3, 2, 2, 3, 3, 4, 3, 4, 1, 3, 1, 3]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20]], [[1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5]], [[-10, 5, 2, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30]], [[10, 10, 10, 10, 10, 10, 10]], [[2, 2, 2, 2, 2, 2, 2, 1]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18]], [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3]], [[1, 3, 5, 7, 9, 11, 13, 15, 17, 19]], [[1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 4, 5, 5, 5]], [[0, 1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 13]], [[12, 1, 1, 2, 2, 3, 3, 4, 2, 4, 4, 5, 5, 5, 2, 5]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 2]], [[1, 5, 7, 9, 11, 13, 15, 17, 19]], [[-10, 5, -30, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 12]], [[12, 1, 1, 2, 2, 3, 3, 4, 2, 5, 4, 4, 6, 5, 5, 2, 5]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4]], [[12, 1, 1, 2, 2, 3, 3, 4, 2, 5, 4, 4, 6, 5, 5, 2, 5, 12, 1, 5, 2]], [[12, 1, 1, 2, 5, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2]], [[1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 3]], [[1, 1, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 5]], [[1, 5, 7, 9, 11, 13, 15, 17, 19, 7]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 5]], [[2, 2, 2, 2, 2, 2, 2, 1, 2]], [[5, 0, 1, 3, 5, 7, 9, 11, -5, 15, 17, 19, 13]], [[-10, 4, -30, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 12]], [[1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 4, 5, 5, 5, 3]], [[1, 5, 12, 9, 11, 13, 15, 17, 19, 7, 1]], [[-10, 5, 2, 5, -10, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30]], [[-30, 1, 1, 2, 2, 3, 4, 14, 4, 4, 5, 5, 4, 2, 5, 4, 5]], [[1, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5]], [[12, 1, 2, 2, 3, 3, 4, 2, 5, 4, 4, 6, 5, 5, 2, 5, 12, 1, 5, 2]], [[1, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 2]], [[1, -10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 2, 4]], [[1, 1, 2, 2, 3, 4, 5, 4, 5, 5, 5]], [[12, 1, 1, 2, 5, 0, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2]], [[0, 1, 3, 5, 7, 9, 11, 13, 15, 1000, 19, 13]], [[12, 0, 1, 2, 3, 3, 4, 2, 5, 4, 4, 6, 5, 5, 2, 5, 12, 5, 2]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 5, 4, 2, 5, 4, 5]], [[1, 1, 1, 2, 2, 3, 3, 1000, 4, 5, 4, 5, 5, 5, 2]], [[1, 1, 1, 2, 2, 2, 15, 3, 3, 4, 4, 4, 5, 5, 5, 5]], [[12, 1, 1, 2, 5, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2, 2]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 7, 5]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 5, 4, 4, 2, 5, 4, 5]], [[-10, 5, 2, 11, 17, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 5, 4, 2, 5, 4, 5, 1]], [[0, 1, 3, 5, 7, 9, 20, 11, 13, 15, 17, 19, 13]], [[-30, 1, 1, 2, 2, 3, 4, 14, 4, 4, 5, 5, 4, 2, 5, 4, 5, 4]], [[1, 1, 1, 2, 2, 3, 3, 1000, 4, 5, 4, 5, 5, 5, 2, 5]], [[12, 1, 1, 2, 5, 2, 3, 4, 4, 4, 5, 4, 2, 5, 4, 2, 2]], [[1, 0, 1, 1, 2, 2, 2, 15, 3, 3, 4, 4, 4, 5, 5, 5, 5]], [[1, 5, 7, 9, 11, 13, 15, 17, 19, 7, 11]], [[1, -10, 1, 1, 2, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 2, 4]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18]], [[12, 1, 1, 2, 6, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4]], [[1, -10, 1, 1, 2, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 2, 4, 2]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 5, 4]], [[12, 1, 1, 2, 2, 5, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2]], [[12, 1, 1, 2, 2, 4, 2, 4, 3, 4, 5, 5, 4, 2, 5, 4, 5, 2]], [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 9, 2, 2, 3, 2]], [[0, 1, 19, 5, 7, 9, 11, 13, 15, 17, 8, 19, 13]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 16]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 13, 4, 2, 5, 4, 5, 1]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 5, 5, 5, 4, 2, 5, 4]], [[1, 1, 1, 2, 4, 2, 3, 3, 4, 4, 4, 5, 5, 5]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 5, 4, 4, 2, 4, 5]], [[-10, 5, -30, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 12, 12]], [[12, 1, 1, 2, 2, 3, 3, 4, 2, 3, 4, 5, 5, 5, 2, 5]], [[-30, 1, 1, 2, 2, 3, 4, 14, 4, 4, 14, 5, 4, 2, 5, 4, 5, 14]], [[12, 1, 1, 2, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 5]], [[1, 1, 1, 4, 2, 4, 2, 3, 3, 4, 4, 4, 5]], [[12, 1, 1, 2, 5, 2, 3, -10, 4, 4, 5, 4, 2, 4, 4, 2, 2]], [[1, 5, 12, 9, 11, 13, 15, 17, 19, 7, 1, 19]], [[12, 1, 2, 2, 3, 3, 4, 2, 5, 5, 4, 6, 5, 5, 2, 5, 12, 1, 5, 2]], [[12, 1, 1, 2, 2, 3, 3, 4, 2, 5, 4, 4, 6, 5, 5, 2, 5, 12, 1, 5, 3]], [[1, 5, 6, 9, 11, 13, 15, 17, 19, 7]], [[2, 2, 2, 2, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2]], [[13, 1, 1, 2, 2, 3, 3, 4, 2, 5, 4, 4, 6, 5, 5, 2, 5]], [[1, 1, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 5, 4]], [[2, 2, 2, 2, 2, 2, 3, 2, 1]], [[12, 1, 1, 2, 5, 2, 3, 4, 2, 4, 4, 5, 4, 4, 2, 5, 4, 2]], [[13, 1, 1, 2, 5, 2, 3, -10, 4, 5, 4, 2, 4, 4, 2, 2]], [[-10, 4, -30, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, 2, -30, 12]], [[12, 1, 1, 2, 5, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2, 2, 2]], [[12, 1, 1, 2, 5, 2, 3, 4, 2, 4, 4, 5, 4, 2, 5, 4, 2, 12]], [[1, 1, 1, 2, 2, 15, 3, 3, 4, 4, 4, 5, 5, 5, 5]], [[1, 1, 1, 1, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18]], [[12, 0, 2, 5, 0, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2, 5]], [[1, -10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 2, 4, 5]], [[12, 1, 2, 5, 2, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2, 2]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 1]], [[1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 13]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 12, 14, 15, 16, 17, 13, 18, 19, 20]], [[0, 1, 19, 5, 7, 9, 11, 13, 15, 17, 8, 19, 13, 19]], [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 9, 2, 2, 3, 2]], [[1, 1, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 5, 5]], [[12, 1, 15, 5, 2, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2, 2]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 5, 4, 5, 4, 5]], [[-30, 1, 1, 2, 2, 3, 4, 14, 4, 4, 5, 5, 4, 1, 5, 4, 5]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 5]], [[-10, 5, -30, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 12, 12, 20]], [[12, 1, 1, 2, 2, 3, 3, 4, 2, 2, 3, 20, 4, 5, 5, 2, 5, 2]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 12, 14, 15, 16, 17, 13, 18, 19, 20, 13]], [[12, 1, 1, 2, 5, 2, 3, 4, 2, 4, 4, 11, 5, 5, 4, 2, 5, 4, 2, 6, 2, 2]], [[1, -10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 2, 4, 3]], [[1, 5, 7, 9, 11, 13, 12, 8, 15, 17, 19, 7, 11]], [[10, 10, 10, 10, 10, 10, 10, 10]], [[2, 2, 2, 2, 3, 2, 3, 2, 1]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 9, 9, 9, 9, 10, 11, 11, 12, 11, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 16]], [[1, -10, 1, 1, 2, 3, 3, 4, 5, 4, 5, 5, 5, 2, 4, 3]], [[12, 1, 1, 2, 5, 2, 3, 4, 2, 4, 4, 5, 4, 2, 5, 4, 2, 12, 4, 4]], [[1, 5, 12, 9, 11, 13, 15, 15, 17, 19, 7, 1]], [[1, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 6, 2]], [[1, 3, 5, 4, 7, 9, 11, 13, 15, 17, 19]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 4, 14, 15, 16, 17, 18, 18, 19, 20, 16]], [[1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 4, 5, 5]], [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 9, 2, 2, 3, 2]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 16]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 10]], [[1, 1, 1, 2, 4, 2, 15, 3, 3, 4, 4, 4, 5, 5, 5, 5]], [[11, 1, 5, 12, 7, 11, 13, 15, 17, 19, 7, 1, 19, 7]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 9, 10, 3, 4, 12, 14, 16, 18, 19, 20, 18, 10, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18]], [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 9, 2, 2, 3, 2]], [[12, 1, 1, 1, 4, 2, 3, 4, 4, 4, 5, 4, 2, 5, 4, 2]], [[1, 5, 12, 9, 10, 11, 13, 15, 15, 17, 19, 7, 1]], [[12, 1, 1, 2, 2, 3, 3, 4, 3, 4, 5, 5, 5, 2, 5]], [[1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 4, 5, 5, 3]], [[12, 0, 2, 5, 0, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2, 5, 5]], [[12, 1, 1, 2, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 5, 4]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 13, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 5]], [[1, 5, 6, 9, 11, 13, 15, 17, 19, 7, 5]], [[1, 2, 3, 3, 3, 4, 4, 19, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 5]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 12, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 3]], [[1, 3, 5, 4, 1000, 7, 9, 11, 13, 15, 19]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 10, 11, 11, 12, 3, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20]], [[1, -10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 18, 4]], [[12, 0, 1, 2, 3, 3, 4, 2, 5, 4, 4, 16, 5, 5, 2, 5, 12, 5, 2]], [[1, 5, 7, 9, 11, 13, 10, 15, 17, 19]], [[12, 1, 1, 2, 6, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 3]], [[1, 18, 9, 11, 13, 15, 15, 17, 19, 7, 1]], [[1, 2, 3, -30, 1, 4, -10, 5, 7, 6, 17, 8, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18]], [[1, 1, 2, 2, 3, 2, 4, 4, 4, 5, 5, 6, 2]], [[12, 1, 1, 2, 5, 2, 4, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2]], [[-30, 1, 1, 2, 2, 3, 4, 14, 4, 4, 14, 5, 4, 2, 5, 4, 5]], [[12, 0, 2, 5, 0, 2, 3, 4, 4, 4, 5, 5, 11, 4, 2, 5, 4, 2, 5, 5]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 8, 18]], [[12, 4, 1, 1, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 5, 4]], [[12, 1, 1, 2, 6, 2, 3, 4, 2, 4, 4, 5, 5, 15, 2, 5, 4]], [[1, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 5]], [[0, 1, 3, 5, 7, 9, 11, 13, 18, 15, 1000, 19, 13, 11]], [[1, 1, 1, 2, 2, 3, 3, 4, 5, 4, 0, 5, 5, 5, 2]], [[12, 1, 1, 2, 5, 2, 3, 4, 2, 2, 4, 4, 5, 4, 4, 2, 5, 4, 2]], [[12, 1, 1, 2, 2, 3, 4, 3, 4, 5, 5, 5, 4, 2, 5, 4, 2]], [[1, 3, 3, 5, 7, 9, 11, 13, 15, 17, 19, 13, 15, 13]], [[12, 1, 1, 2, 4, 2, 3, 4, 0, 2, 4, 4, 5, 5, 4, 2, 5, 4, 7, 5]], [[1, 1, 1, 2, 2, 3, 3, 1000, 4, 5, 5, 5, 5, 2, 5]], [[1, -10, 1, 1, 2, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 2, 4, 2, 2]], [[1, 10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5]], [[12, 1, 1, 2, 2, 3, 4, 3, 4, 5, 5, 5, 4, 2, 5, 4, 2, 1]], [[1, 1, 1, 2, 2, 2, 5, 3, 3, 4, 4, 4, 5, 5, 3]], [[1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 4, 3, 5, 2, 5, 3]], [[-10, 5, -30, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 12, 12, 12, 20, 0]], [[1, 1, 1, 2, 2, 5, 3, 3, 4, 4, -5, 5, 5, 3]], [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 9, 2, 2, 3, 2, 2]], [[1, 1, 1, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 5, 3]], [[1, 2, 3, -30, 1, 4, -10, 5, 7, 6, 17, 8, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18]], [[-10, 5, -30, 5, -10, 8, 12, 12, 0, -5, 9, -5, 20, 20, -30, 12, 12, 20]], [[1, 5, 6, 9, 11, 17, 13, 15, 17, 19, 7, 5]], [[12, 1, 1, 2, 4, 2, 3, 4, 0, 4, 4, 5, 5, 4, 2, 5, 4, 7, 5]], [[2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 12, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 3, 7]], [[-10, 5, -30, 5, -10, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 12, 12, 12, 20, 0]], [[1, -10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 2, 4, 3, 2]], [[1, 1, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 5, 4, 1]], [[1, 5, 6, 9, 11, 13, 15, 17, 7, 5, 1, 13]], [[12, 1, 1, 2, 4, 3, 4, 4, 0, 2, 4, 4, 5, 5, 4, 2, 5, 4, 7, 5]], [[12, 1, 2, 5, 2, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2]], [[5, 5, -30, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 12, 12]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 13, 4, 5, 4, 5, 1]], [[1, 18, 9, 11, 13, 12, 15, 15, 17, 0, 19, 7, 1]], [[1, 5, 12, 9, 11, 13, 15, 15, 17, 19, 7, 1, 15]], [[12, 1, 1, 2, 5, 2, 3, 3, 2, 3, 4, 3, 5, 5, 5, 2, 5]], [[1, 1, 1, 1, 2, 2, 4, 3, 4, 4, 4, 5, 5, 5, 3]], [[12, 4, 1, 1, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 20, 2, 5, 4, 5, 4]], [[12, 1, 1, 2, 5, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2, 4]], [[1, 10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 3]], [[1, 3, 5, 7, 9, 11, 13, 14, 1, 17, 19, 19]], [[1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 5, 5, 5, 3]], [[1, 1, 1, 2, 2, 2, 5, 3, 3, 4, 4, 4, 5, 3]], [[12, 0, 1, 2, 3, 3, 4, 2, 5, 4, 4, 6, 5, 5, 2, 5, 12, 5, 2, 2]], [[12, 1, 2, 2, 3, 3, 4, 2, 5, 4, 4, 6, 5, 5, 2, 5, 12, 1, 5, 2, 4]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 17, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 16]], [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 9, 2, 2, 3, 2, 2]], [[2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 8, 10, 12, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 3, 7]], [[1, 1, 1, 2, 2, 3, 3, 4, 4, 5, 6, 5]], [[1, 3, 5, 7, 9, 13, 15, 17, 19, 13]], [[12, 0, 1, 2, 3, 3, 4, 2, 5, 4, 4, 16, 5, 5, 2, 5, 12, 5, 2, 4]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 5, 4, 4, 2, 5, 4, 5, 5]], [[1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 4, 4, 3, 5, 1]], [[12, 1, 1, 2, 2, 5, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2, 1]], [[0, 1, 3, 5, 7, 9, 20, 11, 13, 15, 17, 19, 13, 7]], [[1, 1, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 4, 5, 4, 1]], [[1, 1, 4, 1, 2, 4, 2, 3, 3, 4, 4, 4, 5, 5, 5]], [[1, 18, 9, 11, 13, 12, 15, 15, 17, 0, 19, 7, 1, 18]], [[2, 2, 2, 2, 2, 2, 2, 2, 1]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 17, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 16, 4]], [[12, 1, 1, 2, 4, 2, 3, 4, 0, 4, 4, 5, 5, 4, 2, 5, 4, 7, 5, 1]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 5, 5, 5, 4, 2, 5, -30, 4]], [[1, 3, 3, 5, 7, 9, 11, 13, 15, 17, 19, 8, 15, 13]], [[12, 0, 2, 5, 0, 2, 3, 9, 4, 4, 4, 5, 5, 11, 4, 2, 5, 5, 2, 5, 5]], [[12, 1, 1, 2, 2, 3, 3, 4, 2, 5, 4, 6, 5, 5, 2, 5]], [[5, 1, 1, 1, 2, 2, 3, 3, 4, 5, 4, 0, 5, 5, 5, 2]], [[1, 0, 1, 1, 2, 2, 2, 15, 3, 3, 4, 4, 4, 5, 5, 5]], [[1, 2, 3, 3, 4, 4, 19, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 5, 12]], [[12, 1, 2, 2, 3, 4, 2, 2, 4, 3, 4, 5, 5, 4, 4, 2, 5, 4, 5]], [[-10, 5, 1, 11, 17, -10, 8, 12, 12, 1, 0, -5, 9, -5, -9, 20, 20, -30]], [[1, 5, 12, 9, 11, 13, 15, 15, 17, 19, 7, 1, 13]], [[1, 3, 5, 7, 9, 11, 13, 15, 1, 17, 19, 19]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 12, 14, 15, 16, 17, 13, 18, 19, 20, 13, 2]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 4, 5, 4, 2, 5, 4, 5, 1]], [[12, 1, 1, 2, 2, 3, 5, 2, 4, 5, 5, 5, 4, 2, 5, -30, 4]], [[1, 1, 1, 4, 2, 4, 2, 10, 3, 3, 4, 4, 4, 5]], [[1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 4, 4, 5, 5]], [[1, 1, 1, 2, 2, 3, -5, 3, 4, 4, 5, 5, 5]], [[1, 1, 2, 3, 2, 3, 4, 2, 4, 3, 4, 4, 5, 4, 2, 5, 4, 5, 1]], [[12, 1, 1, 2, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 5, 4, 2]], [[-10, 5, -30, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 21, 20, -30, 12, 12]], [[1, 2, 2, 1, 4, 5, 7, 6, 7, 8, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 8, 18]], [[1, 2, 3, 4, 5, 3, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 12, 14, 15, 16, 17, 13, 18, 19, 20, 13, 2]], [[0, 1, 3, 5, 7, 9, 20, 11, 13, 15, 17, 19, -9, 13, 7]], [[12, 1, 1, 2, 4, 3, 5, 4, 4, 0, 2, 4, 4, 5, 5, 4, 2, 5, 4, 7, 5]], [[12, 1, 1, 2, 6, 2, 16, 3, 4, 2, 4, 4, 5, 5, 10, 15, 2, 5, 4, 4]], [[12, 1, 1, 5, 2, 3, 3, 2, 3, 4, 3, 5, 5, 2, 5, 5]], [[-10, 5, -30, 5, -10, 12, 12, 1, 0, -5, 9, 5, 20, 20, -30, 12, 12, 12, 20, 0]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 13, 4, 5, 4, 5, 1, 1]], [[1, 5, 12, 9, 11, 13, 15, 15, 17, 19, 7, 1, 13, 13]], [[12, 0, 2, 5, 0, 2, 3, 15, 4, 2, 4, 4, 5, 5, 4, 2, 5, 14, 2, 5, 5]], [[1, 1, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 4, 5, 4, 1]], [[12, 0, 2, 5, 0, 2, 3, 15, 4, 2, 4, 4, 5, 5, 4, 2, 5, 14, 2, 5, 5, 5, 5]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 19]], [[1, 1, 11, 2, 2, 3, 3, 1000, 4, 5, 4, 5, 5, 5, 2, 5]], [[12, 1, 1, 2, 2, 4, 2, 4, 3, 4, 5, 5, 4, 4, 2, 4, 5]], [[0, 1, 3, 5, 7, 9, 11, 10, 18, 15, 1000, 19, 13, 11]], [[1, 5, 6, 11, 17, 13, -9, 18, 19, 7, 5]], [[1, 2, 3, 1, 4, 5, 7, 6, 7, 8, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 19]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 9, 9, 9, 9, 10, 11, 11, 12, 11, 12, 13, 13, 13, 13, 14, 15, 16, 17, 18, 18, 19, 20, 16]], [[2, 2, 2, 2, 3, 2, 2, 3, 2, 1]], [[1, 1, 1, 15, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 2, 5, 3]], [[-10, 5, -30, 5, -10, 8, 12, 12, 0, -5, 9, 20, 20, -30, 12, 12, 20]], [[12, 1, 1, 2, 5, 2, 3, 4, 2, 2, 4, 4, 5, 4, 4, 2, 4, 5, 4, 2]], [[1, 1, 1, 2, 2, 3, 4, 4, 5, 4, 5, -10, 5, 5, 2, 5]], [[12, 1, 1, 2, 2, 3, 3, 4, 2, 5, 4, 5, 5, 5, 2, 5, 4, 4, 1]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 5, 4, 4, 2, 5, 4, 5, 2]], [[1, 5, 6, 11, 17, 13, -9, 18, 19, -5, -30, 7, 5]], [[1, 1, 6, 2, 2, 3, 3, 4, 4, 5, 6, 2]], [[-10, 5, -30, 5, -10, 8, 12, 12, 1, 0, 20, -5, 9, -5, 20, 20, -30, 11, 12, 20]], [[1, 1, 4, 1, 2, 4, 2, 3, 3, 4, 4, 0, 4, 5, 5, 5]], [[12, 1, 1, 2, 2, 4, 2, 4, 3, 4, 5, 6, 4, 4, 4, 5]], [[1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 5, 5, 5, 3, 5, 4]], [[1, 1, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 5, 4]], [[1, 1, 2, 2, 3, 4, 5, 4, 2, 5, 5, 5]], [[2, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 12, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 3, 7]], [[1, 1, 1, 1, 2, 2, 4, 3, 4, 4, 4, 5, 5, 5, 3, 4]], [[0, 1, 3, 5, 7, 9, 11, 21, 18, 15, 1000, 19, 13, 11]], [[12, 1, 1, 2, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 5, 4]], [[1, 5, 7, 9, 11, 13, 12, 8, 15, 18, 19, 7, 11]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 13, 4, 5, 5, 1, 1]], [[1, 1, 2, 2, 2, 3, 3, 4, 4, 4, 4, 5, 5]], [[1, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 3]], [[1, 1, 1, 1, 2, 3, 3, 4, 4, 4, 5, 5, 5]], [[7, 1, 3, 2, 1, 4, 5, 7, 6, 7, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 16]], [[1, 1, 2, 2, 3, 3, 4, 2, 5, 4, 5, 5, 5, 2, 7, 5, 4, 4, 1]], [[1, 1, 2, 2, 3, 4, 4, 3, 4, 5, 13, 4, 2, 5, 4, 5, 1]], [[12, 0, 2, 5, 0, 2, 3, 15, 4, 2, 3, 4, 5, 5, 4, 2, 5, 2, 5, 5, 5, 5, 2]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 1, 18, 16, 16]], [[1, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 5]], [[1, 9, 11, 13, 15, 15, 17, 19, 7, 1]], [[3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 12, 10, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 3, 7]], [[12, 1, 1, 2, 6, 2, 3, 4, 2, 4, 4, 5, 5, 15, 2, 5, 4, 12, 12]], [[12, 1, 1, 2, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 999, 4, 5, 4]], [[5, 5, -30, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 12, 0, 12]], [[12, 1, 2, 2, 2, 3, 4, 2, 4, 3, 4, 5, 5, 4, 5, 4, 5]], [[0, 1, 14, 5, 7, 9, 11, 10, 18, 15, 1000, 19, 13, 11]], [[0, 1, 3, 7, 9, 20, 11, 13, 15, 17, 19, -9, 13, 7]], [[12, 1, 1, 2, 5, 2, 3, 4, 2, 2, 4, 4, 5, 4, 4, 2, 4, 5, 4, 2, 2]], [[-30, 1, 1, 2, 2, 3, 4, 14, 4, 4, 14, 5, 4, 2, 5, 4, 5, 14, 14]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 14, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 9, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 16]], [[12, 0, 1, 2, 3, 3, 4, 2, 4, 4, 6, 4, 5, 2, 5, 12, 2]], [[0, 1, 3, 5, 7, 9, 11, 13, 18, 15, 1000, 19, 13, 11, 13]], [[1, 5, 6, 9, 1, 11, 13, 15, 17, 19, 7, 5]], [[1, 3, 5, 4, 7, 9, 11, 13, 15, 17, 19, 5, 1]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 12, 7, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 1, 18, 16, 16]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 4, 4, 2, 4, 5]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 5, 4, 4, 2, 4, 5, 2]], [[12, 1, 1, 2, 6, 2, 3, 4, 14, 2, 4, 4, 5, 5, 15, 2, 5, 4, 12, 12]], [[1, -10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 18, 4]], [[1, 1, 2, 2, 3, 2, 4, 4, 8, 5, 5, 6, 2]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 6, 13, 4, 2, 5, 4, 5, 4]], [[-10, 5, -30, 5, -10, 12, 13, 1, 0, -5, 9, 5, 20, 20, -30, 12, 12, 12, 20, 0]], [[7, 0, 1, 3, 5, 7, 9, 20, 11, 13, 15, 17, 19, 13, 7]], [[1, 8, 5, 7, 9, 11, 8, 13, 15, 17, 19, 7, 11]], [[1, 1, 1, 1, 2, 3, 3, 4, 4, 19, 4, 5, 5]], [[12, 1, 1, 2, 5, 2, 3, 4, 2, 2, 4, 4, 5, 4, 4, 5, 4, 2]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 14, 6, 7, 8, 9, 14, 9, 9, 9, 10, 11, 11, 9, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 16]], [[1, 2, 3, -30, 1, 4, -10, 5, 7, 6, 17, 8, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 3]], [[17, -10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 2, 4, 5, 5, 5]], [[1, 1, 1, 4, 2, 4, 2, 10, 3, 4, 4, 4, 4, 5]], [[12, 1, 1, 2, 1, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 7, 5, 4]], [[5, 5, -30, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 12, 12, 0]], [[1, -10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 2, 4, 3, 2]], [[12, 1, 1, 2, 2, 3, 3, 0, 3, 4, 5, 5, 5, 2, 5]], [[1, -10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 2, 4, 3, 2, 2]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 9, 9, 9, 9, 10, 11, 9, 11, 12, 11, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 16]], [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3]], [[0, 1, 3, 5, 7, 9, 20, 11, 13, 15, 17, 19, 13, 13]], [[12, 1, 1, 2, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 5, 4, 4]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 16]], [[1, 1, 1, -1, 2, 2, 3, 3, 4, 5, 4, 0, 5, 5, 5, 2]], [[9, 10, 10, 10, 10, 10, 10, 10]], [[1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 9, 2, 2, 3, 2, 2]], [[3, 1, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5]], [[12, 4, 1, 1, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 5, 4]], [[1, 3, 5, 4, 1000, 3, 7, 9, 11, 13, 15, 19]], [[10, 10, 10, 10, 10, 10, 10, 1]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 12, 7, 16, 10, 18, 19, 20, 7, 10, 20, 16, 1, 18, 16, 16]], [[12, 1, 1, 2, 6, 2, 3, 4, 2, 4, 4, 5, 5, 15, 2, 5, 4, 12, 12, 4]], [[1, -10, 1, 1, 2, 2, 2, 3, 4, 5, 4, 5, 5, 5, 2, 4, 2]], [[1, 1, 4, 1, 2, 4, 2, 3, 3, 4, 4, 4, 0, 4, 5, 5, 5]], [[1, 1, 2, 2, 3, 3, 4, 4, 4, 5, 5, 6, 2, 2]], [[1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 5, 5, 3, 4]], [[12, 0, 1, 2, 3, 3, 4, 1, 5, 4, 4, 16, 5, 5, 2, 5, 12, 5, 2, 4]], [[1, 1, 1, 2, 2, 2, 3, 3, 4, 4, 4, 3, 5, 2, 5, 3, 1]], [[-30, 1, -10, 1, 1, 2, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 2, 4, 2, 2]], [[1, -10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 5, 18, 4, 4]], [[1, 1, 1, 2, 2, 3, 3, -5, 4, 4, 5, 5, 5]], [[1, 2, 3, 1, 4, 5, 7, 6, 7, 8, 18, 10, 9, 10, 3, 12, 14, 16, 18, 19, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 19, 3]], [[1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 16, 3, 5, 3]], [[1, 2, 3, -30, 1, 4, -10, 5, 6, 17, 8, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18]], [[12, 1, 2, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 4, 5]], [[1, 3, 1, 4, 1, 2, 4, 2, 3, 3, 4, 4, 0, 4, 5, 5, 5, 2, 4]], [[12, 1, 1, 2, 2, 4, 2, 4, 3, 4, 5, 5, 4, 2, 5, 4, 5, 2, 4]], [[-30, 10, 10, 10, 10, 10, 10]], [[17, 1, 5, 7, 9, 11, 13, 15, 17, 19, 7, 9]], [[1, 1, 2, 2, 3, 3, 4, 2, 5, 4, 5, 5, 5, 2, 7, 5, 4, 4, 1, 1]], [[10, 10, 10, 10, 11, -1, 10, 10, 10]], [[1, 5, 7, 9, 11, 13, 12, 8, 15, 17, 19, 7, 11, 8]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 5, 4, 4, 2, 20, 4, 5, 5]], [[12, 1, 2, 2, 3, 3, 4, 2, 5, 5, 6, 5, 5, 2, 5, 12, 1, 5, 2]], [[2, 2, 2, 2, 2, 2, 2, 2, 1, 1]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 17, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 16, 4]], [[2, 2, 2, 2, 3, 2, 3, 2, 1, 1]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 19, 20, 7, 10, 20, 16, 18]], [[12, 1, 1, 2, 5, 2, 3, 4, 2, 4, 4, 5, 5, 4, 1, 2, 5, 4, 2, 2, 2]], [[1, 2, 3, 2, 1, 20, 4, 5, 7, 6, 7, 8, 18, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 8, 18]], [[1, 1, 1, 12, 2, 2, 4, 3, 4, 4, 4, 5, 1, 4, 5, 3, 4]], [[1, 1, 2, 2, 3, 2, 4, 4, 5, 5, 6, 2]], [[5, 0, 1, 3, 5, 7, 9, 11, 1, 15, 17, 19, 13]], [[12, 1, 1, 2, 6, 2, 3, 4, 14, 4, 4, 5, 5, 15, 2, 5, 4, 12, 12, 4]], [[1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 16, 3, 5, 3, 4]], [[12, 1, 1, 2, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 1, 5, 4, 5, 4]], [[12, 1, 1, 2, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 999, 4, 4, 4]], [[12, 1, 1, 2, 2, 2, 6, 4, 2, 4, 4, 5, 5, 4, 5, 4, 2]], [[1, 1, 4, -9, 2, 4, 2, 3, 3, 4, 4, 4, 0, 4, 5, 4, 5]], [[1, 3, 5, 7, 9, 11, 13, 15, 17, 19, 13, 19]], [[-10, 5, 2, 5, -10, 12, 12, 1, -5, -31, 9, -5, 20, 20, -30]], [[-10, 5, -30, -10, 8, 12, 12, 1, 0, 0, -5, 9, -5, 20, 20, -30, 12, 12, 12]], [[3, 5, 4, 1000, 7, 9, 11, 13, 15, 19]], [[-30, 1, 1, 2, 2, 3, 4, 14, 4, 999, 14, 5, 4, 2, 5, 4, 5, 14]], [[12, 1, 1, 1, 4, 2, 3, 4, 4, 4, 5, 4, 2, 5, 4, 2, 5]], [[2, 2, 2, 2, 2, 2, 2, 2, -31, 1, 1]], [[12, 1, 1, 2, 2, 3, 999, 4, 2, 4, 3, 4, 5, 4, 4, 0, 4, -10]], [[12, 1, 1, 2, 2, 4, 4, 3, 4, 5, 13, 5, 4, 4, 2, 4, 5]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 10, 5, 5, 6, 7, 8, 3, 9, 9, 9, 10, 11, 11, 11, 12, 12, 12, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 16, 4, 12]], [[1, -10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 999, 5, 18, 4, 4, 1]], [[12, 1, 1, 2, 4, 2, 3, 4, 0, 4, 4, 5, 4, 2, 5, 4, 7, 5, 1]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 6]], [[12, 1, 1, 2, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 5, 999, 9, 4, 4]], [[13, 1, 2, 2, 4, 3, 5, 4, 4, 0, 2, 4, 4, 5, 5, 4, 2, 5, 4, 7, 5]], [[1, 1, 1, 2, 2, 2, 3, 3, 3, 1000, 4, 4, 5, 5, 3, 4]], [[1, 5, 12, 9, 11, 13, 15, 15, 8, 17, 19, 7, 1, 13]], [[12, 1, 1, 2, 2, 3, 3, 4, 2, 5, 4, 4, 6, 5, 5, 3, 2, 5, 12, 1, 5, 2]], [[1, 1, 1, 1, 2, 3, 3, 2, 4, 4, 4, 5, 5, 5]], [[12, 0, 2, 5, 0, 2, 3, 9, 4, 4, 4, 4, 5, 5, 11, 4, 2, 5, 5, 2, 5, 5]], [[12, 2, 1, 1, 2, 2, 4, 2, 4, 3, 4, 5, 5, 4, 2, 5, 4, 5, 2, 4]], [[2, 2, 2, 2, 2, 13, 3, 2, 1]], [[1, 1, 2, 6, 2, 3, 4, 2, 4, 4, 5, 5, 15, 2, 5, 4, 12, 12, 4]], [[12, 1, 1, 2, 2, 2, 3, 4, 2, 4, 4, 5, 5, 4, 2, 1, 5, 4, 5]], [[1, 1, 4, -9, 2, 4, 2, 3, 3, 4, 4, 4, 0, 4, 5, 4, 1, 5]], [[12, 1, 1, 5, 2, 3, 3, 2, 3, 4, 3, 5, 5, 2, 5, 15, 5]], [[12, 0, 2, 5, 0, 2, 3, 4, 4, 4, 5, 5, 5, 11, 4, 2, 5, 4, 1, 5, 5, 5]], [[7, 1, 3, 2, 1, 4, 5, 7, 6, 7, 18, 9, 10, 3, -31, 14, 16, 18, 19, 20, 18, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 16]], [[2, 2, 2, 2, 8, 2, 2, 2, 2, 1]], [[1, 18, 9, 11, 13, 12, 15, 17, 0, 19, 7, 1, 18]], [[12, 1, 1, 2, 4, 2, 3, 4, 0, 2, 4, 5, 5, 4, 2, 5, 4, 8, 5, 4]], [[1, 5, 7, 9, 11, 13, 10, 15, 16, 19]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 16, 9]], [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 9, 2, 2, 3, 2, 2, 2]], [[1, -10, 1, 1, 2, 2, 2, 3, 3, 5, 4, 5, 5, 5, 2, 4, 2, 2]], [[1, 19, 5, 7, 9, 11, 13, 15, 17, 8, 6, 0, 19, 13]], [[12, 1, 2, 2, 3, 3, 4, 2, 5, 5, 4, 6, 5, 5, 2, 5, 12, 1, 5, 2, 4]], [[1, 5, 12, 11, 13, 15, 15, 17, 19, 7, 1, 13, 13]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 13, 12, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 3]], [[1, 1, 1, 2, 2, 2, 3, 4, 4, 4, 3, 5, 2, 5, 3, 1]], [[1, 2, 3, 3, 1, 20, 4, 5, 7, 6, 7, 8, 18, 9, 10, 3, 12, 14, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, -10, 16, 8, 18]], [[1, 1, 1, 2, 2, 3, -5, 3, 4, 4, 5, 5, 5, 1]], [[1, 1, 1, 2, 2, 3, 1000, 4, 5, 4, 5, 5, 5, 2, 5]], [[1, 2, 6, 16, 3, 4, 2, 4, 4, 5, 5, 10, 15, 2, 5, 4, 4]], [[1, -10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, -5, 5, 5, 2, 4, 5]], [[1, 2, 3, 4, 5, 3, 7, 8, 9, 10, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 12, 14, 15, 16, 17, 13, 18, 19, 13, 2]], [[1, -10, 1, 1, 2, 2, 3, 3, 4, 5, 4, 5, 6, 5, 2, 4, 3]], [[12, 1, 1, 7, 2, 2, 3, 3, 4, 2, 5, 4, 4, 6, 5, 5, 2, 5, 12, 1, 5, 3]], [[1, 5, 6, 9, 11, 13, 9, 17, 7, 5, 1, 13]], [[1, -10, 1, 1, 2, 2, 3, 3, 4, 2, 5, 4, 5, 5, 18, 4]], [[1, 1, 4, 1, 1, 2, 3, 3, 4, 19, 4, 5, 5]], [[1, 2, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20]], [[12, 1, 1, 2, 2, 4, 2, 4, 3, 4, 6, 5, 4, 9, 2, 5, 4, 5, 2]], [[-10, -6, 5, 5, -10, 8, 12, 12, 0, -5, 9, -5, 20, 20, 20, 12, 12, 20]], [[1, 2, 3, 2, 1, 20, 4, 5, 7, 6, 7, 8, 18, 9, 10, 3, 15, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 8, 18, 19]], [[12, 0, 1, 2, 3, 3, 4, 1, 5, 4, 4, 16, 5, 5, 2, 5, 12, 5, 2, 4, 2]], [[1, 3, 5, 4, 7, 9, 11, 13, 11, 15, 17, 19, 5, 1]], [[1, 1, 1, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 16, 3, 5, 3]], [[12, 1, 15, 5, 2, 9, 2, 4, 4, 5, 5, 4, 2, 5, 4, 2, 2]], [[1, 1, 2, 2, 2, 3, 3, 3, 1000, 4, 4, 5, 5, 3, 4, 5]], [[1, 2, 3, 1, 4, 5, 7, 6, 7, 8, 18, 10, 9, 10, 3, 12, 14, 16, 18, 19, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 19, 999]], [[1, -10, 1, 1, 2, 2, 2, 3, 3, 4, 5, 4, 5, 5, 5, 2, 4, 2, 2, 5]], [[1, 1, 2, 2, 2, 3, 3, 4, 4, 4, 5, 5, 5]], [[1, 1, 1, 2, 2, 3, 3, 5, 4, 5, 5, 5, 3]], [[12, 1, 1, 2, 3, 4, 2, 4, 3, 4, 6, 5, 4, 9, 2, 5, 4, 5, 2, 2]], [[1, 1, 4, 1, 1, 2, 3, 3, 4, 19, 4, 5, 5, 5, 1]], [[1, -10, 1, 1, 2, 2, 4, 4, 2, 5, 4, 5, 5, 18, 4, 4]], [[-30, 10, 10, 10, 10, 10]], [[12, 1, 3, 1, 2, 5, 2, 3, -10, 4, 4, 5, 4, 2, 4, 4, 2, 2]], [[12, 1, 1, 2, 2, 3, 4, 2, 4, 3, 4, 5, 5, 4, 4, 2, 20, 4, 5, 5, 20]], [[1, 3, 5, 4, 4, 1000, 3, 7, 9, 11, 13, 15, 19, 3]], [[0, 1, 3, 5, 7, 9, 11, 1000, 13, 10, 1000, 19, 13, 1000]], [[1, 8, 1, 1, 2, 2, 2, 3, 3, 4, 4, 4, 3, 5, 1]], [[0, 1, 3, 5, 7, 9, 21, 18, 15, 19, 13, 11]], [[1, 1, 2, 6, 11, 3, 5, 2, 4, 4, 5, 5, 15, 2, 5, 4, 12, 12, 4]], [[2, 2, 2, 2, 3, 2, 3, 2, 1, 1, 2]], [[0, 1, 3, 5, 7, 9, 20, 11, 13, 15, 17, 19, -9, 13, 7, 11]], [[1]], [[1, 2, 3, 4, 5]], [[1, 2, 3, 2, 4, 3, 5, 5, 6, 6, 7, 8, 8, 8, 9, 9, 9, 9]], [[-1, -2, 3, 4, -1, 0, -2]], [[1, -1, 0, 1, -1, 0]], [[0, 0, 0, 0, 0, 0]], [[1, 2, 2, 1, 4, 4, 4, 4]], [[10, 10, 10, 10, 9, 9, 10, 11, 10]], [[-10, 5, 2, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 12]], [[1, 2, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20]], [[10, 10, 10, 10, 10, 10]], [[2, 2, 2, 2, 2, 2, 2, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3]], [[1, 3, 5, 7, 8, 11, 13, 15, 1000, 13]], [[2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 18, 19, 20]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 18]], [[1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 5]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 18, 19, 20, 11]], [[2, 2, 2, 3, 2, 2, 2, 1]], [[10, 11, 10, 10, 10, 10, 10, 10]], [[1, 3, 5, 7, 9, 13, 15, 17, 19]], [[10, 10, 10, 9, 9, 10, 10, 10]], [[10, 10, 10, 10, 10]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12]], [[2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 1]], [[10, 0, 10, 10, 9, 10, 10, 10, 9]], [[1, 2, 3, 2, 1, 3, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12]], [[10, 11, 10, 13, 10, 10, 10, 10]], [[1, 2, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12]], [[1, 3, 5, 7, 9, 11, 13, 15, 18, 19, 18]], [[1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 12, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20]], [[0, 10, 10, 9, 10, 8, 10, 10, 5, 10]], [[0, 10, 10, 9, 10, 8, 10, 10, 5, 10, 10]], [[1, 1, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12]], [[1, 2, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 0, 12]], [[-10, 5, 2, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 12, -10]], [[1, 3, 7, 8, 11, 13, 15, 1000, 13]], [[1, 2, 5, 7, 9, 11, 13, 15, 17, 19, 19]], [[10, 11, 10, 13, 10, 10, 10, 11]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 9, 10, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 10, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 20]], [[-10, 5, 2, 3, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 12, -10, 2]], [[2, 1, 2, 1000, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 1, 2]], [[10, 11, 10, 10, 10]], [[2, 2, 2, 2, 2, 2, 2, 0, 1]], [[1, 1, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12, 11]], [[1, 1, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12, 11]], [[1, 1, 2, 2, 9, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5]], [[1, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20]], [[1, 3, 5, 18, 7, 9, 11, 13, 15, 18, 19, 18]], [[1, 2, 3, 2, 1, 3, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 15, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 9, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12, 6]], [[-10, 5, 2, 5, -10, 8, 12, 12, 1, -5, 0, -5, 9, -5, 20, 20, 7, 12]], [[1, 2, 3, 2, 1, 3, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12, 2]], [[2, 1, 2, 1000, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 0, 2, 2, 2, 2, 3, 2, 2, 1, 2, 2]], [[1, 1, 3, 3, 4, 4, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 18, 15, 16, 17, 18, 18, 19, 20, 12]], [[0, 10, 10, 9, -5, 11, 8, 10, 10, 5, 10, 10, 10]], [[10, 0, 10, 10, 9, 10, 10, 10, 10]], [[2, 2, 2, 2, 2, 2, 18, 1]], [[1, 3, 5, -5, 7, 9, 11, 13, 15, 18, 19, 18]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 20, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 4, 19, 20]], [[10, 11, 10, 10]], [[10, 11, 13, 10, 10, 10, 11, 13]], [[20, 10, 10]], [[1, 2, 3, 2, 1, 4, 5, 7, 7, 8, 9, 10, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12]], [[10, 11, 10, 13, 10, 10, 10, 11, 10]], [[2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2]], [[10, 0, 10, 10, 9, 9, 10, 6, 10, 10]], [[2, 2, 4, 3, 2, 2, 2, 1]], [[10, 11, 10, 13, 10, 10, 11, 10, 11, 10]], [[10, 10, 10, 11, 10, 10, 10]], [[3, 5, -5, 7, 9, 0, 11, 13, 15, 18, 19, 18]], [[7, 10, 10, 10, 10, 9, 9, 10, 11, 10]], [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 3, 2]], [[10, 10, 10, 10, 9, 9, 11, 10, 10]], [[0, 10, 10, 9, 10, 8, 10, 10, 17, 0, 10, 10]], [[10, 0, 10, 10, 9, 9, 10, 10, 10]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 10, 10, 11, 12, 12, 12, 10, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 20]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 16, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3]], [[10, 0, 10, 10, 9, 10, 10, 10, 10, 10]], [[10, 0, 10, 10, 9, 10, 10, 10, 10, 15, 10, 10]], [[1, 1, 3, 3, 4, 3, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 18, 16, 17, 18, 18, 19, 20]], [[1, 1, 2, 2, 9, 2, 3, 3, 3, 3, 3, 4, 4, 5, 5, 5]], [[10, 11, 9, 13, 10, 10, 10, 11, 13]], [[1, 1, 3, 3, 10, 4, 3, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 18, 16, 17, 18, 18, 19, 20]], [[1, 1, 1, 3, 2, 2, 2, 3, 3, -10, 4, 4, 4, 5, 5, 5]], [[1, 3, 5, 7, 8, 11, 13, 13]], [[10, 0, 10, 10, 9, 9, 10, 10, 10, 10, 9]], [[10, 0, 10, 9, 9, 10, 10, 10, 10, 9, 10]], [[1, 3, 5, 18, 7, 9, 11, 13, 15, 18, 19, 16, 18]], [[10, 10, 10, 10, 13, 10]], [[2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 1, 2]], [[1, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 18, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 18]], [[0, 10, 10, 9, -5, 11, 8, 10, 10, 5, 10, 10, 10, 10]], [[1, 2, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 9]], [[10, 0, 10, 9, 9, 10, 10, 10, 10, 15, 10, 10]], [[1, 3, 7, 8, 11, 13, 15, 1000, 10, 13]], [[-10, 5, 2, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, -10]], [[-10, 5, 2, 5, 1001, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, -10]], [[1000, 10, 10, 10, 10, 9, 9, 11, 10, 10, 11, 10]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 20, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 4, 20, 20]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 20, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 4, 19, 20, 15]], [[1, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 18, 11, 12, 12, 12, 13, 13, 13, 14, 14, 15, 16, 17, 18, 19, 20, 18]], [[10, 10]], [[0, -30, 10, 9, 10, 8, 10, 10, 17, 0, 10, 10]], [[10, 10, 10, 10, 9, 9, 11, 10, 11, 10, 11]], [[1, 3, 5, 7, 9, 13, 15, 16, 5, 19]], [[0, 10, 9, 10, 9, 8, 10, 10, 5, 10, 10, 5]], [[10, 0, 10, 9, 9, 10, 10, 10, 10, 15, 10, 10, 10]], [[1, 2, 5, 13, 7, 9, 11, 13, 15, 17, 19, 19, 13]], [[2, 2, 4, 3, 4, 2, 2, 2, 1]], [[0, 10, 10, 9, 10, 8, 10, 10, 17, 0, 10, 10, 10]], [[1, 3, 7, 8, 11, 13, 10, 15, 1000, 10, 13, 10, 13]], [[14, 10, 11, 10, 10]], [[10, 0, 10, 9, 9, 10, 10, 10, 10, 10, 10, 10]], [[2, 1, 2, 1000, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 1, 2]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 20, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 4, 20, 20, 10]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 20]], [[10, 0, 11, 10, 9, 9, 10, 6, 10, 10]], [[10, 11, 10, 13, 10, 9, 10, 11, 10, 10]], [[10, 0, 11, 10, 9, 9, 10, 6, 10, 10, 0]], [[1, 1, 1, 3, 2, 2, 2, 3, -10, 4, 4, 4, 5, 5, 5]], [[1, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 18, 6, 12, 12, 12, 13, 13, 13, 14, 14, 15, 16, 17, 18, 19, 20, 18]], [[1, 3, 5, -5, 7, 9, 11, 13, 15, 18, 18]], [[2, 2, 2, 2, 2, 2, 2]], [[1, 3, 5, 7, 9, 13, 15, 16, -30, 5, 19]], [[1, 2, 3, 16, 1, 3, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 15, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 19, 10, 20, 18, 12]], [[1, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12]], [[1, 1, 2, 2, 9, 2, 3, 3, 3, 3, 3, 4, 4, 5, 5, 5, 3, 2]], [[1, 3, 7, 8, 11, 15, 1000, 13]], [[1, 3, 5, 7, 8, 10, 13, 15, 1000, 13]], [[10, 11, 10, 13, 11, 10, 10, 11, 10, 11, 10, 10]], [[1, 2, 3, 8, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 3, 15, 16, 17, 18, 18, 19, 20, 9]], [[2, 1, 2, 1000, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 1, 2, 2]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 9, 10, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 18, 19, 20, 7, 10, 20, 16, 18, 12]], [[0, 10, 10, 9, -10, 10, 10, 10, 9]], [[1, 2, 3, 3, 3, 11, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 10, 11, 12, 12, 12, 13, 14, 13, 13, 14, 14, 15, 16, 17, 18, 18, 20]], [[18, -10, 5, 2, 7, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 1000, -10]], [[-10, 5, 2, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 10, -30, 12, -10, 0]], [[1, 6, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5]], [[10, 0, 10, 10, 9, 10, 10, 10, 10, 10, 10]], [[1, 3, 5, 7, 12, 11, 13, 15, 18, 19, 18]], [[1, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 18, 6, 12, 12, 12, 13, 13, 13, 14, 15, 16, 17, 18, 19, 20, 18, 13]], [[10, 0, 10, 9, 10, 10, 10, 10, 10, 9]], [[3, 5, -5, 7, 9, 0, 11, -30, 13, 15, 18, 19, 18, 9]], [[10, 0, 9, 9, 10, 10, 10, 10, 15, 10, 10, 10]], [[-10, 5, 2, 7, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 0, 20, 20, -30, 1000, -10]], [[3, 5, -5, 7, 9, 0, 20, 11, 13, 15, 18, 19, 0, 18, 18]], [[1, 2, 3, 2, 1, 3, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12, 2, 7]], [[1, 6, 2, -5, 3, 16, 1, 3, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 15, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 19, 10, 20, 18, 12, 16, 18]], [[1, 9, 6, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 1]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 9, 10, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 18, 19, 20, 7, 10, 20, 16, 18, 12, 12]], [[2, 1, 2, 1000, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 1, 2, 2]], [[1, 3, 5, 7, 9, 13, 15, 16, -30, 5, 6]], [[1, 2, 3, 16, 1, 3, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 15, 9, 16, 18, 19, 20, 18, 10, 12, 7, 14, 16, 10, 18, 19, 3, 20, 7, 19, 10, 20, 18, 12]], [[1, 2, 19, 5, 7, 9, 11, 13, 15, -5, 19, 19]], [[1, 3, 5, 18, 7, 9, 11, 13, 15, 18, 19, 18, 18]], [[10, 0, 10, 9, 8, 9, 10, 10, 10, 10, 15, 10, 10, 10]], [[2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 1]], [[1, 6, 2, 2, 2, 3, 3, 3, 4, 4, 9, 5, 5, 5]], [[1, 3, 4, 7, 1001, 13, 15, 16, -30, 5, 19]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 20, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 4, 20, 15]], [[10, 11, 13, 10, 10, 10, 11, 13, 13]], [[1, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 15, 16, 17, 18, 18, 19, 20]], [[1, 2, 3, 2, 1, 3, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12, 2, 3]], [[10, 11, 10, 10, 10, 10]], [[10, 11, 10, 13, 10, 10, 1, 11, 10, 11, 10, 10]], [[10, 11, 10, 13, 10, 10, 10, 10, 10]], [[1, 3, 5, 7, 13, 9, 13, 15, 16, -30, 5, 6]], [[7, 10, 10, 10, 10, 9, 9, 10, 11, 10, 9]], [[0, -30, 11, 10, 9, 10, 8, 10, 10, 17, 0, 10, 10]], [[0, 10, 10, 9, 10, 10, 10, 10, 10, 10]], [[1, 6, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 10, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 20]], [[10, 0, 10, 9, 8, 9, 10, 15, 10, 10, 10, 15, 10, 10, 10]], [[2, 1, 2, 1000, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 1, 2]], [[8, 1, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 18, 6, 12, 12, 12, 13, 13, 13, 14, 14, 15, 16, 17, 18, 19, 20, 18]], [[-10, 5, 3, 5, -10, 8, 12, 12, 1, -5, 9, -5, 19, 20, -30, 12, -10, 2]], [[10, 10, 10, 10, 6, 10]], [[-10, 5, 2, 5, 1001, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, -30, -10]], [[2, 1, 2, 2, 2, 2, 2, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 2, 2]], [[-10, 5, 2, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, -4, 14, -30, 12, -10]], [[1, 2, 3, 1, 4, 5, 7, 6, 7, 8, 9, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12, 6]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 20, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 4, 20, 20, 10, 4]], [[5, 2, 5, -10, 8, 12, 12, 1, 0, -5, -5, 20, 20, -30]], [[1, 1, 2, 2, 9, 2, 3, 3, 3, 3, 3, 4, 4, 5, 5, 5, 3, 2, 3, 1]], [[1, 3, 5, 7, 13, 15, 16, -30, 5, 19]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 1, 2, 3, 16, 5, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 3]], [[1, 1, 1, -4, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 5]], [[10, 11, 13, 10, 10, 10, 11, 9, 13]], [[1, 6, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 1]], [[1, 2, 3, 16, 1, 3, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 15, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 19, 10, 20, 18, 12, 3]], [[10, 0, 9, 9, 10, 10, 10, 10, 15, 10, 10]], [[10, 10, 11, 10, 12, 10]], [[3, 5, -5, 7, 9, 0, 6, 11, -30, 13, 15, 18, 19, 18, 9]], [[1, 2, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 20, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 4, 19, 20, 15]], [[999, 5, 3, 5, -10, 8, 12, 12, 1, -5, 9, -5, 19, 20, -30, 12, -10, 2]], [[1, 3, 5, 18, 7, 9, 11, 11, 13, 15, 18, 19, 18, 18]], [[10, 10, 10, 10, 9, 8, 11, 10, 10]], [[3, 5, -5, 7, 9, 0, 20, 11, 13, 16, 18, 19, 0, 15, 18]], [[1, 18, 3, 2, 1, 4, 5, 7, 7, 8, 9, 10, 12, 14, 16, 18, 19, 20, 18, 10, 12, 3, 14, 16, 10, 18, 20, 7, 10, 20, 16, 18, 12]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 18, 19, 20, 11, 18]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 10, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 20, 5]], [[10, 10, 10, 10, 9, 9, 10, 11, 10, 11]], [[1, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 15, 16, 17, 18, 18, 19, 0, 12]], [[7, 10, 6]], [[-10, 5, 2, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 6, 20, -30, 12, -10]], [[7, 8, 5, 10, 6, 6]], [[1, 2, 19, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 18, 19, 20]], [[3, 5, -5, 7, 9, 0, 6, 11, -30, 13, 15, 18, 19, 18, 9, 13, 0]], [[11, 10, 3, 7, 8, 11, 13, 10, 15, 1000, 10, 13, 10, 13]], [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, -4, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 3, 2]], [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 9, 2, 2]], [[1, 9, 6, 2, 2, 2, 3, 3, 3, 4, 4, 5, 5, 5, 1, 9]], [[-10, 5, 2, 7, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 0, 20, 20, -30, 14, -10, 11, -10]], [[2, 2, 14, 2, 2, 2, 2]], [[3, 10, 0, 10, 9, 9, 10, 10, 10, 10, 9, 10]], [[7, 10, 10, 10, 10, 9, 9, 10, 11, 10, 9, 10, 9]], [[2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, -30, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2]], [[7, 10, 10, 10, 10, 9, 9, 10, 11, 10, 9, 10, 9, 10]], [[0, -30, 10, 9, 10, 8, 10, 10, 17, 0, 10, 10, 10]], [[10, 10, 10, -4, 6, 10, 10]], [[1, 3, 4, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 18, 11, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 19, 20, 18, 1]], [[2, 1, 2, 2, 2, 2, 2, 5, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 2, 2, 3]], [[1, 1, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12, 11, 4]], [[1, 3, 5, 7, 8, 13, 10, 13, 15, 1000, 13]], [[10, 11, 10, 13, 10, 10, 0, 10, 11]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 13, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20]], [[1, 1, 2, 9, 2, 3, 3, 3, 3, 3, 4, 4, 5, 5, 5, 3, 2, 3]], [[1, 1, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12, 11, 4, 8]], [[1, 1, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12, 11, 19]], [[1, 3, 5, 7, 12, 11, 13, 15, 18, 19, 18, 18]], [[1, 2, 3, 1, 4, 5, 7, 6, 7, 8, 9, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12, 6, 12]], [[1, 2, 3, 2, 1, 3, 4, 6, 7, 6, 7, 8, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12, 2, 7]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 9, 10, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 18, 19, 20, 7, 10, 20, 16, 18, 12, 12, 20]], [[10, 0, 10, 10, 9, 9, 10, 10]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 14, 16, 18, 19, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12]], [[10, 10, 11, 10, 12, 10, 10, 12, 11]], [[1, 2, 3, 2, 1, 3, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 14, 16, 18, 19, 20, 18, 10, 1000, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12]], [[1, 3, 5, 7, 13, 9, 13, 15, 16, -30, 5, 6, 5]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 10, 10, 11, 12, 12, 12, 10, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 20, 13]], [[1, 2, 1, -4, 2, 2, 2, 3, 3, 3, 4, 4, 4, 5, 5, 5, 5]], [[3, 5, -5, 7, 9, 0, 6, 11, -30, 8, 13, 15, 18, 19, 18, 9]], [[10, 10, 10, 6, 10]], [[-10, 5, 2, 5, -10, 8, 12, 12, 1, -5, 0, -5, 9, -5, 20, 20, 7, 12, -10]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 19, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 12, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20]], [[2, 1, 2, 2, 2, 2, 2, 5, 999, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 3, 2, 2, 3]], [[999, 5, 3, 5, -10, 8, 12, 12, 1, -5, 5, -5, 19, 20, -30, 12, -10, 2]], [[1, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 13, 18, 6, 12, 12, 12, 13, 13, 13, 14, 15, 16, 17, 18, 19, 20, 18, 13]], [[10, 0, 9, 9, 10, 10, 10, 10, 10, 10]], [[2, 1, 2, 1000, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 1, 2, 2, 3, 2, 2, 1, 2, 2, 3]], [[10, 0, 11, 10, 9, 9, 10, 1001, 10, 10]], [[7, 8, 5, 10, 6]], [[1, 3, 5, -5, 7, 9, 11, 13, 15, 18, 19, 18, 13]], [[1, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 18, 6, 12, 12, 12, 13, 13, 13, 14, 15, 16, 17, 18, 19, 20, 18, 13, 5]], [[-10, 5, 2, 5, 1001, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, -10, 8]], [[7, 10, 10, 10, 10, 9, 9, 9, 10, 11, 10, 9]], [[1, 3, 5, 18, 7, 9, 11, 11, 13, 15, 18, 19, 20, 18, 18, 1]], [[1, 2, 3, 1, 4, 5, 7, 6, 7, 8, 9, 12, 14, 16, 18, 19, 20, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 6, 10, 20, 16, 18, 12, 6, 12, 20, 7]], [[1, 3, 5, -5, 7, 9, 3, 11, 13, 15, 18, 18, 18, 18]], [[1, 3, 6, 7, 8, 11, 13, 13]], [[10, 10, 10, 11, 9, 9, 10, 11, 10]], [[10, 11, 10, 13, 10, 10, 10, 11, 10, 13]], [[1, 2, 19, 5, 7, 9, 11, 13, 15, -5, 19, 19, 13]], [[999, 5, 3, 5, -10, 8, 12, 12, 1, -5, 5, -5, 19, -6, 20, -30, 12, -10, 2]], [[1, 2, 5, 13, 7, 9, 11, 13, 15, 17, 19, 19, 13, 11]], [[1, 2, 3, 2, 1, 4, 5, 7, 6, 7, 8, 9, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12, 6, 10, 10]], [[10, 10, 10, 9, 9, 11, 10, 11, 10, 11]], [[1, 3, 5, 7, 9, 13, 15, 16, -30, 5, 6, 9, 6]], [[1, 3, 5, 7, 13, 15, 16, -30, 5, 20]], [[-10, 5, 2, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 6, 20, -30, 12, -10, 5]], [[1, 3, 5, 7, 8, 11, 13, 13, 13]], [[1, 2, 3, 2, 2, 4, 5, 7, 6, 7, 8, 9, 10, 12, 14, 16, 18, 19, 20, 18, 10, 1, 7, 3, 14, 16, 18, 19, 20, 7, 10, 20, 16, 18, 12, 12]], [[3, 5, -5, 7, 9, 0, 20, 11, 13, 15, 18, 19, 0, 18, 18, 13]], [[-11, 5, 2, 5, -10, 8, 12, 12, 1, 0, 0, -5, 20, 20, 9, -30, 12]], [[2, 2, 4, 3, 4, 2, 2, 2, 1, 2]], [[1, 1, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 10, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12, 11, 4, 8]], [[1, 2, 3, 16, 1, 3, 4, 5, 7, 6, 7, 8, 9, 10, 3, 12, 15, 16, 18, 19, 20, 18, 10, 12, 7, 14, 16, 10, 18, 19, 20, 7, 19, 10, 20, 18, 12]], [[1, 2, 3, 3, 4, 16, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20]], [[1, 2, 3, 18, 1, 4, 5, 7, 6, 7, 8, 9, 10, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 1001, 18, 16, 18, 19, 20, 7, 10, 20, 16, 18, 12, 12]], [[1, 3, 3, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 18, 6, 12, 12, 12, 13, 13, 13, 16, 14, 15, 16, 17, 18, 19, 20, 18, 13, 12]], [[10, 11, 11, 10, 12, 10]], [[0, 10, 10, 9, 10, 8, 4, 10, 10, 5, 10, 10]], [[1, 3, 7, 8, 11, 13, 10, 15, 1000, 10, 13, 10, 13, 1]], [[3, 5, -5, 7, 9, 21, 0, 20, 11, 13, 15, 18, 19, 0, 18, 18, 13]], [[1, 2, 5, 13, 7, 9, 11, 13, 17, 19, 19, 13]], [[1, 3, 3, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 9, 1001, 9, 9, 10, 11, 19, 6, 12, 12, 12, 13, 13, 13, 16, 14, 15, 16, 17, 18, 19, 20, 18, 13, 12]], [[-10, 5, 2, 5, -10, 8, 6, 13, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30]], [[1, 3, 5, 7, 12, 11, 13, 15, 19, 18, 5]], [[1, 2, 3, 1, 4, 5, 7, 6, 7, 8, 9, 12, 14, 16, 18, 19, 20, 18, 10, 12, 7, 3, 14, 16, 8, 10, 18, 19, 20, 7, 10, 20, 16, 18, 12, 6]], [[1, 3, 5, 18, 7, 9, 11, 13, 15, 18, 19, 18, 15]], [[1, 3, 5, 7, 9, 11, 13, 19, 15, 18, 19, 18]], [[1, 2, 3, 3, 4, 16, 4, 5, 15, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 17, 11, 12, 12, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20]], [[10, 10, 10, 10, 9, 9, 11, 10, 10, 9]], [[1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 10, 1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]], [[7, 10, 10, 10, 10, 9, 9, 10, 11, 10, 9, 10, 10, 9, 10, 10]], [[1, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 7, 7, 8, 9, 9, 9, 9, 10, 11, 18, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 18]], [[-10, 5, 2, 5, 1001, -10, 8, 12, 12, 1, 0, 9, -5, 20, 20, -30, -10]], [[3, 5, -5, 7, 9, 21, 0, 20, 11, 13, 15, 18, 19, 0, 11, 18, 18, 13]], [[1, 13, 3, 5, 7, 8, 11, 13, 13, 13, 5, 5]], [[1, 2, 19, 3, 3, 3, 4, 4, 21, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 18, 19, 20]], [[0, 10, 10, 9, -10, 10, 10, 19, 10, 9, -10]], [[1, 2, 3, 3, 4, 4, 5, 5, 5, 6, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12]], [[1, 17, 5, -5, 7, 9, 11, 13, 15, 18, 19, 18]], [[10, 10, 10, 10, 13, 999, 10]], [[0, 10, -6, 11, 10, 13, 10, 10, 0, 10, 11]], [[10, 10, 10, 10, 10, 9, 10]], [[1, 9, 6, 2, 2, 2, 3, 3, 3, 4, 4, 5, 5, 5, 1, 9, 5, 5]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 12, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12, 20]], [[1, 2, 3, 3, 4, 4, 5, 5, 5, 0, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12]], [[-10, 5, 2, 5, 1001, -10, 8, 12, 12, 1, 0, 9, -5, 20, 20, -30, 1, -10, -10]], [[1, 3, 5, 7, 13, 15, 16, 5, 19]], [[1, 1, 3, 3, 4, 4, 5, 5, 5, 6, 7, 8, 9, 21, 9, 9, 10, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12, 11, 4, 8, 8]], [[1, 3, 5, 7, 8, 13, 10, 13, 15, 1000, 13, 15]], [[2, 1, 2, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 2, 2, -30, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2]], [[1, 1, 1, 3, 2, 2, 2, 3, -10, 4, 4, 5, 5, 5]], [[1, 1, 2, 2, 9, 2, 3, 3, 4, 4, 4, 5, 5, 5]], [[7, 10, 10, 10, 10, 9, 9, 9, 10, 11, 18, 10, 9]], [[1, 1, 3, 3, 4, 4, 5, 5, 5, 7, 8, 9, 9, 9, 9, 10, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20, 12, 11, 4]], [[10, 0, 4, 10, 9, 9, 10, 6, 10, 10, 0]], [[18, -10, 5, 2, 7, 5, -10, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 1000, -10, 1]], [[1, 3, 5, 7, 9, 13, 15, 17, 19, 17]], [[-10, 5, 2, 5, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 20, -30, 12, 20]], [[1, 3, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 15, 16, 17, -11, 18, 18, 19, 20]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 18, 13, 13, 14, 14, 15, 16, 17, 18, 18, 19, 20]], [[1, 2, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 8, 11, 20, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 4, 19, 20, 15]], [[10, 10, 10, 10, 19, 10, 15, 9, 10, 10]], [[1, 3, 5, -5, 7, 9, 11, 13, 15, 18, 18, 15]], [[2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 9, 2, 6]], [[1, 2, 3, 3, 3, 4, 4, 5, 5, 5, 5, 6, 7, 8, 9, 9, 9, 9, 10, 11, 11, 12, 12, 12, 13, 13, 13, 13, 14, 14, 15, 16, 1000, 18, 18, 19, 20, 11, 6]], [[2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 3, 2, 2, 1, 2]], [[1, 3, 5, 7, 12, 11, 13, 15, 20, 18, 5]], [[10, 10, 10, 9, 1000, 9, 11, 10, 11, 10, 11]], [[1, 3, 5, 18, 13, 9, 11, 15, 18, 19, 18, 5]], [[10, 0, 10, 9, 10, 10, 10, 10, 10, 9, 9]], [[2, 2, 2, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 9, 2, 2, 2]], [[-10, 5, 2, 5, 1001, -10, 8, 12, 12, 1, 0, -5, 9, -5, 20, 7, -30, -10]]]
claude-3-haiku-20240307. fail_base: True, fail_plus: True
Here's the completed code to solve the problem:
```python
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
"""
From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
unique_numbers = []
for num in numbers:
if num not in seen:
seen.add(num)
unique_numbers.append(num)
return unique_numbers
code-millenials-34b. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for number in numbers:
if number not in seen:
seen.add(number)
result.append(number)
return result
speechless-coding-7b-16k-tora. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
"""
result = []
for number in numbers:
if number not in result:
result.append(number)
return result
claude-3-opus-20240229. fail_base: True, fail_plus: True
Here's the code to solve the problem, wrapped in a markdown block:
```python
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for num in numbers:
if num not in seen:
seen.add(num)
result.append(num)
return result
mixtral-8x7b-instruct. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
# Create an empty list to store unique elements
unique_numbers = []
# Iterate over the input list
for number in numbers:
# If the number is not in the list of unique numbers, add it
if number not in unique_numbers:
unique_numbers.append(number)
return unique_numbers
mixtral-8x22b-instruct-v0.1. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for num in numbers:
if num not in seen:
seen.add(num)
result.append(num)
return result
# Test cases
code-llama-multi-34b. fail_base: False, fail_plus: False
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
return [x for i, x in enumerate(numbers) if numbers.count(x) == 1]
def remove_duplicates_set(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates_set([1, 2, 3, 2, 4])
[1, 3, 4]
"""
return list(set(numbers))
def remove_duplicates_dict(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates_dict([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = {}
result = []
for x in numbers:
if x not in seen:
seen[x] = 1
result.append(x)
return result
def remove_duplicates_dict_comprehension(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates_dict_comprehension([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = {}
return [x for x in numbers if not (x in seen or seen.update({x: 1}))]
def remove_duplicates_dict_comprehension_2(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates_dict_comprehension_2([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = {}
return [x
Qwen--Qwen1.5-72B-Chat. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
"""
unique_numbers = []
for num in numbers:
if num not in unique_numbers:
unique_numbers.append(num)
return unique_numbers
# Test cases
test_list = [1, 2, 3, 2, 4]
mistral-large-latest. fail_base: True, fail_plus: True
Sure, here's a Python function that solves the problem:
```python
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for num in numbers:
if num in seen:
continue
seen.add(num)
result.append(num)
return result
```
This function uses a set to keep track of the numbers we've seen. If we encounter a number we've seen before, we skip it. If we encounter a number for the first time, we add it to the set and to the result list. This way, we only add each number to the result list once, and we preserve the order of the numbers.
HuggingFaceH4--starchat2-15b-v0.1. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for num in numbers:
if num not in seen:
seen.add(num)
result.append(num)
return result
# Test the function
assert remove_duplicates([1, 2, 3, 2, 4]) == [1, 3, 4]
assert remove_duplicates([1, 1, 1, 1, 1]) == [1]
assert remove_duplicates([]) == []
assert remove_duplicates([1, 2, 3, 4, 5]) == [1, 2, 3, 4, 5]
codegemma-7b. fail_base: True, fail_plus: True
Here is the Python solution for this problem using the dictionary to keep track of the frequency of the numbers:
code-llama-multi-13b. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
# TODO: Implement this function
return []
def remove_duplicates_set(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates_set([1, 2, 3, 2, 4])
[1, 3, 4]
"""
# TODO: Implement this function
return []
def remove_duplicates_dict(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates_dict([1, 2, 3, 2, 4])
[1, 3, 4]
"""
# TODO: Implement this function
return []
def remove_duplicates_sorted(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates_sorted([1, 2, 3, 2, 4])
[1, 3, 4]
"""
# TODO: Implement this function
return []
def remove_duplicates_sorted_set(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates_sorted_set([1, 2, 3, 2, 4])
[1, 3, 4]
"""
# TODO: Implement this function
return []
def remove_duplicates_sorted_dict(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates_sorted_dict([1, 2, 3,
deepseek-coder-6.7b-instruct. fail_base: True, fail_plus: True
Here is the Python function in a markdown style code block:
```python
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
"""
From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
Args:
numbers (List[int]): A list of integers.
Returns:
List[int]: A list of integers with duplicates removed.
Examples:
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
result = []
seen = set()
for num in numbers:
if num not in seen:
result.append(num)
seen.add(num)
return result
```
This function works by iterating over the input list and adding each number to a set if it has not been seen before. If a number has been seen before, it is ignored. The order of the numbers in the result list is the same as in the input list.
open-hermes-2.5-code-290k-13b. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for num in numbers:
if num not in seen:
seen.add(num)
result.append(num)
return result
speechless-coder-ds-6.7b. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for num in numbers:
if num not in seen:
seen.add(num)
result.append(num)
return result
codegemma-7b-it. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for number in numbers:
if number not in seen:
seen.add(number)
result.append(number)
return result
deepseek-coder-33b. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
return list(set(numbers))
mistralai--Mistral-7B-Instruct-v0.2. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
"""
# Use a set to remove duplicates and then convert back to list
return list(set(numbers))
xwincoder-34b. fail_base: False, fail_plus: False
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
unique_numbers = []
for number in numbers:
if numbers.count(number) == 1:
unique_numbers.append(number)
return unique_numbers
# Test the function
print(remove_duplicates([1, 2, 3, 2, 4]))
code-13b. fail_base: False, fail_plus: False
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
# Create an empty dictionary
count_dict = {}
# Iterate over the list
for num in numbers:
# If the number is not in the dictionary, add it with a count of 1
if num not in count_dict:
count_dict[num] = 1
# If the number is already in the dictionary, increment its count
else:
count_dict[num] += 1
# Create a new list with the numbers that have a count of 1
new_list = [num for num, count in count_dict.items() if count == 1]
return new_list
# Test the function
print(remove_duplicates([1, 2, 3, 2, 4])) # Output: [1, 3, 4]
wizardcoder-15b. fail_base: True, fail_plus: True
Here's the Python script for the problem:
```python
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
"""
unique_numbers = []
for number in numbers:
if number not in unique_numbers:
unique_numbers.append(number)
return unique_numbers
```
The `remove_duplicates` function takes a list of integers as input and returns a new list with all duplicates removed. The function works by iterating over each element in the input list and checking if it already exists in the `unique_numbers` list. If it doesn't, the element is added to the list. Finally, the function returns the `unique_numbers` list.
mistral-7b-codealpaca. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for num in numbers:
if num not in seen:
seen.add(num)
result.append(num)
return result
deepseek-coder-33b-instruct. fail_base: False, fail_plus: False
Here is the Python function implemented in a markdown style code block:
```python
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
result = []
for num in numbers:
if numbers.count(num) == 1:
result.append(num)
return result
```
This function works by iterating over each number in the input list. If the count of the number in the list is 1 (meaning it only occurs once), it is added to the result list. The function then returns the result list.
<|EOT|>
phi-2. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
seen_add = seen.add
return [x for x in numbers if not (x in seen or seen_add(x))]
if __name__ == "__main__":
import doctest
doctest.testmod()
bigcode--starcoder2-15b-instruct-v0.1. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
unique_numbers = set()
result = []
for num in numbers:
if num not in unique_numbers:
unique_numbers.add(num)
result.append(num)
return result
white-rabbit-neo-33b-v1. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for num in numbers:
if num not in seen:
seen.add(num)
result.append(num)
return result
microsoft--Phi-3-mini-4k-instruct. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for num in numbers:
if num not in seen:
seen.add(num)
result.append(num)
return result
speechless-codellama-34b. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
unique_numbers = []
for number in numbers:
if number not in unique_numbers:
unique_numbers.append(number)
return unique_numbers
```
meta-llama-3-70b-instruct. fail_base: False, fail_plus: False
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
"""
seen = {}
result = []
for num in numbers:
if num not in seen:
seen[num] = 1
result.append(num)
elif seen[num] == 1:
seen[num] += 1
return [num for num in result if seen[num] == 1]
# Test the function
print(remove_duplicates([1, 2, 3, 2, 4])) # [1, 3, 4]
code-llama-70b-instruct. fail_base: False, fail_plus: False
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
# Create a dictionary to keep track of the number of occurrences of each number
occurrences = {}
# Iterate through the list of numbers
for number in numbers:
# If the number is not in the dictionary, add it with a value of 1
if number not in occurrences:
occurrences[number] = 1
# If the number is already in the dictionary, increment its value by 1
else:
occurrences[number] += 1
# Create a new list to store the unique numbers
unique_numbers = []
# Iterate through the list of numbers again
for number in numbers:
# If the number occurs only once, add it to the unique_numbers list
if occurrences[number] == 1:
unique_numbers.append(number)
return unique_numbers
# Test the function
numbers = [1, 2, 3, 2, 4]
print(remove_duplicates(numbers))
opencodeinterpreter-ds-33b. fail_base: True, fail_plus: True
```python
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
result = []
for num in numbers:
if num not in result:
result.append(num)
return result
openchat. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
seen = set()
result = []
for num in numbers:
if num not in seen:
seen.add(num)
result.append(num)
return result
# Test case
print(remove_duplicates([1, 2, 3, 2, 4])) # Output: [1, 3, 4]
deepseek-coder-7b-instruct-v1.5. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for num in numbers:
if num not in seen:
result.append(num)
seen.add(num)
return result
speechless-starcoder2-7b. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
result = []
for num in numbers:
if num not in result:
result.append(num)
return result
wizardcoder-7b. fail_base: True, fail_plus: True
Here's the Python script for the given problem:
```python
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
unique_numbers = []
for num in numbers:
if num not in unique_numbers:
unique_numbers.append(num)
return unique_numbers
```
Explanation:
We define a function `remove_duplicates` that takes a list of integers as input and returns a list of integers. We create an empty list `unique_numbers` to store the unique elements of the input list. We then iterate through each element in the input list and check if it is already in the `unique_numbers` list. If it is not, we append it to the list. If it is already in the list, we skip it. Finally, we return the `unique_numbers` list. This will remove all duplicates from the input list while maintaining the order of the elements.
octocoder. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
return list(dict.fromkeys(numbers))
gemma-1.1-7b-it. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for number in numbers:
if number not in seen:
seen.add(number)
result.append(number)
return result
gpt-3.5-turbo. fail_base: False, fail_plus: False
Here's the code to complete the problem:
```python
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
unique_numbers = []
for number in numbers:
if numbers.count(number) == 1:
unique_numbers.append(number)
return unique_numbers
```
This code defines a function `remove_duplicates` that takes a list of integers as input and returns a new list with all elements that occur more than once removed. The order of the elements in the input list is preserved in the output list. The function uses a loop to iterate over each number in the input list and checks if the count of that number in the list is equal to 1. If it is, the number is added to the `unique_numbers` list. Finally, the `unique_numbers` list is returned as the output.
codebooga-34b. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for num in numbers:
if num not in seen:
seen.add(num)
result.append(num)
return result
deepseek-coder-1.3b-instruct. fail_base: True, fail_plus: True
Here is the implementation of the function in markdown style:
```python
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
"""
From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
Examples:
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
seen = set()
result = []
for num in numbers:
if num not in seen:
seen.add(num)
result.append(num)
return result
```
This function works by maintaining a set of seen numbers. It iterates over the input list, and if it encounters a number that has not been seen before, it adds it to the result list and the set of seen numbers. The order of the elements in the result list is the same as in the input list, and all elements that occur more than once are removed.
speechless-mistral-7b. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
result = []
for num in numbers:
if num not in result:
result.append(num)
return result
```
xdan-l1-chat. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
unique_numbers = []
for number in numbers:
if number not in unique_numbers:
unique_numbers.append(number)
return unique_numbers
solar-10.7b-instruct. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
result = []
seen = set()
for num in numbers:
if num not in seen:
result.append(num)
seen.add(num)
return result
claude-3-sonnet-20240229. fail_base: True, fail_plus: True
Here's the code to solve the problem:
```python
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
result = []
seen = set()
for num in numbers:
if num not in seen:
seen.add(num)
result.append(num)
return result
code-33b. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
# Create an empty list to store the unique numbers
unique_numbers = []
# Iterate over the input list
for number in numbers:
# If the number is not already in the unique_numbers list, add it
if number not in unique_numbers:
unique_numbers.append(number)
return unique_numbers
starcoder2-15b-oci. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
# Your code here
return []
def main():
numbers = [1, 2, 3, 2, 4]
print(remove_duplicates(numbers))
speechless-starcoder2-15b. fail_base: True, fail_plus: True
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
unique_numbers = []
for num in numbers:
if num not in unique_numbers:
unique_numbers.append(num)
return unique_numbers
python-code-13b. fail_base: False, fail_plus: False
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
# Create a dictionary to count the occurrences of each number
counts = {}
for num in numbers:
if num in counts:
counts[num] += 1
else:
counts[num] = 1
# Create a new list with only the numbers that occur once
result = []
for num in numbers:
if counts[num] == 1:
result.append(num)
return result
opencodeinterpreter-ds-6.7b. fail_base: True, fail_plus: True
```python
from typing import List
def remove_duplicates(numbers: List[int]) -> List[int]:
""" From a list of integers, remove all elements that occur more than once.
Keep order of elements left the same as in the input.
>>> remove_duplicates([1, 2, 3, 2, 4])
[1, 3, 4]
"""
result = []
seen = set()
for num in numbers:
if num not in seen:
result.append(num)
seen.add(num)
return result