You are given a list lst that always has an odd number of elements.
Return a new list containing all the elements of lst except the middle element (the element at index len(lst) // 2). The relative order of the remaining elements must be preserved.
If the list has exactly one element, removing the middle leaves an empty list [].
NOTE: This is a function-type question — you only write the function. Do not read input or print anything; a hidden checker calls your function and checks its return value.
Arguments
[1, 2, 3]
Returns
[1, 3]