package
0.0.0-20230710210237-5ce2504b62fa
Repository: https://github.com/shomali11/go-interview.git
Documentation: pkg.go.dev

# README

Description

Implement a Multi Map. A collection that maps keys to values, similar to Map, but in which each key may be associated with multiple values.

Example:

Input: Push ("key1", "1"), Push ("key1", "2"), Push ("key2", "3"), Get "key1" 
Output: ["1", "2"]

# Functions

New factory that creates a new Hash Multi Map.

# Structs

HashMultiMap a data structure representing a map of keys with lists of values.