code-sherpas / kollections

Kollections is a Kotlin open source library to fill the gap that currently exists in the Kotlin Standard Library regarding data structures. :rocket:
MIT License
9 stars 9 forks source link

Implement `head()` function for a Singly Linked List #25

Closed ashikka closed 3 years ago

ashikka commented 3 years ago

Taking reference from issue #12, implement the head() function for a Singly Linked List. This function will find the element at the head of the list.

First step

Search, read, and understand information about lists, linked lists, and singly-linked lists, and how they are implemented.

Second step

Open a pull request with the data structure implementation, and wait for comments from @code-sherpas/kollections-maintainers.

Minimum acceptance criteria

Related resources:

bhaveesarna commented 3 years ago

Hey @ashikka could I work on this?