Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
My Best solution in Clear category for Even the Last by haruboo
def checkio(array):
try: return sum([ array[i] for i in range(0,len(array),2) ]) * array[-1]
except IndexError: return 0
June 8, 2016