Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Even the last solution in Uncategorized category for Even the Last by sebastian.okseniuk
def checkio(array):
n = 0
i = 0
k = len(array)
if k == 0:
return 0
else:
while i< k:
n += array[i]
i+= 2
return n * array[k-1]
Dec. 2, 2015