Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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