dsa-go/readme.md

16 lines
778 B
Markdown
Raw Permalink Normal View History

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:21:42 +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 [[Implementation](https://github.com/dnutiu/dsa-go/blob/master/stack/stack.go)] | [[Tests](https://github.com/dnutiu/dsa-go/blob/master/stack/stack_test.go)]
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
2025-01-07 11:41:24 +00:00
I also maintain a DSA repo for Java & Kotlin, which you can find [here](https://github.com/dnutiu/dsa)