Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Lambda Method solution in Creative category for Replace Last by jparkes23
from typing import Iterable
replace_last = lambda L: (L[-1],) + tuple(L[:-1]) if len(L)>2 else L
if __name__ == '__main__':
print("Example:")
print(list(replace_last([2, 3, 4, 1])))
# These "asserts" are used for self-checking and not for an auto-testing
assert list(replace_last([2, 3, 4, 1])) == [1, 2, 3, 4]
assert list(replace_last([1])) == [1]
assert list(replace_last([])) == []
print("Coding complete? Click 'Check' to earn cool rewards!")
Feb. 6, 2020