Maps
- Map (hash, dictionary)
- Empty Map
- Empty Map with make
- Map type defintion without container
- Create map with data in it already
- Delete Map element
- Size of map (len)
- Access map element (that does not exist)
- Map element exists
- Increment map elements
- Iterate over elements of map
- Keys of a map
- Sort map
- Sort map by value
- map of slices
- Mixed map
- Exercise: count characters
- Exercise: count characters - sort by frequency
- Exercise: count words
- Exercise: count words from file
- Solution: count characters
- Solution: count characters - sort by frequency
- Solution: count words
- Solution: count words from file