← Pointer Manipulation
Pointer Manipulation Target: 10s
Tail insertion requires traversal to end. Know this for list construction problems.
while cur.next: cur = cur.next cur.next = Node(val)
Type it from memory. Go.