First solution in Clear category for Even the Last by maggalus
def checkio(array): return 0 if array==[] else sum(array[::2])*array[-1]
Nov. 3, 2019