Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Even the Last by PiotrKrol
def checkio(array):
wynik = 0
i = 0
if len(array) != 0:
while i < len(array):
wynik = wynik + array[i]
i += 2
wynik *= array[len(array) - 1]
return wynik
Oct. 17, 2017