Implement a LinkedList using Kotlin/Native
Linked Lists
A linked list is a data structure, usually linear, in which elements are stored in a non-contiguous set of memory locations. The elements in the list are connected using pointers.
The JVM has an implementation of a LinkedList that we wil...
otsembo.hashnode.dev5 min read