Map
October 27, 2020 ยท View on GitHub
In computer science, an associative array, map, symbol table, or dictionary is an abstract data type composed of a collection of (key, value) pairs, such that each possible key appears at most once in the collection.
There are various implementations of this abstract data structure, such as, but not limited to:
Exercises
HighScores
This exercise asks student to create and maintain a map of highscores using strings as keys and integers as values
- Map
- Add key-values to maps
- Put values to a map
- Remove key-value pairs from a map
- Return formatted data from a map structure
Implementations
| Track | Exercise | Changes |
|---|---|---|
| Elixir | maps | None |