Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Последний элемент сделать первым solution in Clear category for Replace Last by R0bo7
def replace_last(line: list) -> list:
if line:
line.insert(0,line.pop())
return line
Dec. 25, 2021
Comments: