dsa-jvm/readme.md

10 lines
541 B
Markdown
Raw Normal View History

2024-04-13 20:13:59 +00:00
# Data Structures and Algorithms
This repository is my self study guide for data structures and algorithms. I implement them from scratch in Kotlin
and then write unit test for them.
2024-04-13 20:16:40 +00:00
What better way to learn a language and new concepts exists other than practicing them.
## Data Structures
* Linked List [Implementation](https://github.com/dnutiu/dsa/blob/master/src/main/kotlin/data_structures/linked_list/LinkedList.kt) | [Tests](https://github.com/dnutiu/dsa/blob/master/src/test/kotlin/data_structures/linked_list/LinkedListTest.kt)