Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Second solution in 3rd party category for Even the Last by _Chico_
def checkio(array):
from numpy import sum
if len(array) > 0:
return int(sum(array[::2])*array[-1])
else:
return 0
May 16, 2021
Comments: