Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Try/except array solution in Clear category for Even the Last by bostonz1
def checkio(array):
try:
return (sum(array[::2])*array[-1])
except:
return 0
May 2, 2020