2024-09-15 12:00:16 +00:00
|
|
|
# Data Structures and Algorithms
|
|
|
|
|
|
|
|
This repository is my self study guide for data structures and algorithms. I implement them from scratch in Go
|
|
|
|
and then write unit test for them.
|
|
|
|
|
2024-09-15 12:03:23 +00:00
|
|
|
What better way to learn a language and new concepts exists other than practicing them.
|
|
|
|
|
|
|
|
## Data Structures
|
|
|
|
|
2024-11-27 21:20:19 +00:00
|
|
|
* Hash Set [Implementation](https://github.com/dnutiu/dsa-go/blob/master/hash_set/hash_set/hash_set.go) | [Tests](https://github.com/dnutiu/dsa-go/blob/master/hash_set/hash_set/hash_set_test.go)
|
|
|
|
* Generic Stack
|
2024-09-15 12:03:23 +00:00
|
|
|
|
2024-11-21 17:59:33 +00:00
|
|
|
### Other
|
2024-09-15 12:03:23 +00:00
|
|
|
|
2024-11-21 17:59:33 +00:00
|
|
|
I also maintain a DSA repo for Java & Kotlin, which you can find [here](https://github.com/dnutiu/dsa)
|