Skip to content
This repository has been archived by the owner on Aug 31, 2021. It is now read-only.

Latest commit

 

History

History
29 lines (19 loc) · 984 Bytes

map.md

File metadata and controls

29 lines (19 loc) · 984 Bytes

Map

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