Course · Section 9: Data Structures, Modern Operators and Strings · Lecture 124: Maps: Fundamentals
Implement `lookupAll(pairs, keys)` that builds a Map from an array of `[key, value]` pairs, then returns the values for the given `keys` in order.
+ 1 hidden test run on Submit.
A Map is constructed directly from entry pairs and queried with get.
Run your code to see results.