Mental Model
We remove a node from a linked list by changing the pointer of the previous node to skip the node to delete.
Analogy: Imagine a chain of paper clips linked together. To remove one clip in the middle, you unhook the clip before it and link it directly to the clip after it.
head -> 1 -> 2 -> 3 -> 4 -> null
