def median(l: list):
"""Return median of elements in the list l.
>>> median([3, 1, 2, 4, 5])
3
>>> median([-10, 4, 6, 1000, 10, 20])
15.0
"""
def similar_elements(test_tup1: tuple, test_tup2: tuple) -> tuple:
"""
Write a function to find the shared elements from the given two lists.
assert set(similar_elements((3, 4, 5, 6),(5, 7, 4, 10))) == set((4, 5))
"""
For example, in humaneval/47, the second example is incorrect and the output should be
8.For example, in mbpp/2, the example uses
tupleas inputs but the requirement mentions the inputs arelist