Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
The one obvious way to do it. solution in Clear category for Even the Last by smilicic
def checkio(array):
if not array:
return 0
return sum(array[::2])*array[-1]
Dec. 2, 2020
Comments: