Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One line solution in Clear category for Median of Three by lucas.stonedrake
import statistics as st
def median_three(els):
return els[0:2] + [st.median(els[n:n+3]) for n in range(len(els)-2)]
if __name__ == '__main__':
print("Example:")
print(list(median_three([1, 2, 3, 4, 5, 6, 7])))
# These "asserts" are used for self-checking and not for an auto-testing
assert list(median_three([1, 2, 3, 4, 5, 6, 7])) == [1, 2, 2, 3, 4, 5, 6]
assert list(median_three([1])) == [1]
print("Coding complete? Click 'Check' to earn cool rewards!")
Oct. 28, 2020