fix(exercises): remove trailing spaces

This commit is contained in:
Alexandre ESSE
2023-03-31 11:20:11 +02:00
parent 362c1b0d11
commit 22bb662d3e
5 changed files with 10 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
# Hashmaps
A *hash map* allows you to associate a value with a particular key.
You may also know this by the names [*unordered map* in C++](https://en.cppreference.com/w/cpp/container/unordered_map),
You may also know this by the names [*unordered map* in C++](https://en.cppreference.com/w/cpp/container/unordered_map),
[*dictionary* in Python](https://docs.python.org/3/tutorial/datastructures.html#dictionaries) or an *associative array* in other languages.
This is the other data structure that we've been talking about before, when