Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
one string solution in Clear category for Even the Last by kdim
def checkio(array: list) -> int:
return sum(array[::2])*array[-1] if array else 0
Jan. 16, 2021
Comments: