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