Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/isensee-bastian/set-strings
Tutorial code for my video Generics Part 2: Using the empty Interface in Golang
https://github.com/isensee-bastian/set-strings
basic-programming beginner-tutorial-series data-structures generics golang learn-to-code maps sets tutorial youtube
Last synced: 19 days ago
JSON representation
Tutorial code for my video Generics Part 2: Using the empty Interface in Golang
- Host: GitHub
- URL: https://github.com/isensee-bastian/set-strings
- Owner: isensee-bastian
- License: mit
- Created: 2022-04-05T21:23:40.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-04-05T21:29:03.000Z (over 2 years ago)
- Last Synced: 2024-10-28T09:29:32.602Z (2 months ago)
- Topics: basic-programming, beginner-tutorial-series, data-structures, generics, golang, learn-to-code, maps, sets, tutorial, youtube
- Language: Go
- Homepage: https://youtu.be/ASUf380d974
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Generics Part 1: Set Implementation without Generics
* What is a set data structure
* Unique elements
* Fast lookup
* No associated value required (all values are keys)
* Implementing a simple set:
* New
* Size
* Add
* Remove
* Contains
* Slice
* String