Given a linked list, we should not have access to nodes digging the `head` ``` linked_list.head.next_node.next_node ``` We should only reach given node through `linked_list.finds` methods.
Given a linked list, we should not have access to nodes digging the
headWe should only reach given node through
linked_list.findsmethods.