Linked lists are a collection of nodes that are connected by links or pointers. In this section, we'll power through some exercises to get you familiar with their inner workings.
The goal of this section is to become comfortable using linked list terminology and concepts. We'll start by practicing the basic operations on a linked list — adding and removing elements — and then we'll move on to more advanced topics like finding specific elements in a list.
How do I use this section?