We're sorry but this app doesn't work properly without JavaScript enabled. Please enable it to continue.

This lesson's interactive features are locked, please to keep using them

Add to Tail

Time to allow our LinkedList to add new nodes to the end of the list. Kind of like a regular Python List's .append method.

Assignment

Complete the add_to_tail method. It adds a new node to the end of the list and returns nothing.

    • Update your "last" node reference to the current node