Problem Challenge: Prefix Map
Solve a problem to test and practice your knowledge and understanding of the concept of prefix searching.
We'll cover the following...
Problem Statement
Design a prefix map that must support two operations.
putInMap
: This should take a key string and an integer value as the input and map a string key to a given integer value. It should return true if the key does not exist in the map previously; ...