Nodes and References
Know
A linked list is nodes each holding a value and a reference onward. There is no index, so position k costs k steps to reach.
Apply
Walk from the head, counting steps, and keep a reference to the previous node when you may need to modify.
Watch out
Assuming constant-time access. That is an array property and does not survive the switch.
Study move
Draw a four-node list and write the traversal that reaches the third node.
