Take a list, e.g. [a,b,c,d]
write a function to move range 2,3, e.g. [b,c] to location 1,
def move(l, start, end, target):
pass
I solved it but I'm embarrassed at how long it took. No FAANG jobs for me, eh
Post
June 17, 2022
June 17, 2022
Take a list, e.g. [a,b,c,d]
write a function to move range 2,3, e.g. [b,c] to location 1,
def move(l, start, end, target):
pass
I solved it but I'm embarrassed at how long it took. No FAANG jobs for me, eh