You are tasked with implementing a contact manager that supports two types of operations:
The contact manager should efficiently handle a large list of operations. Your solution should consider optimal time complexity for both adding and finding contacts.
You will receive a list of operations where each operation is in one of the two forms:
name
consists of lowercase English letters.partial
is a prefix string consisting of lowercase English letters.For example:
add hack
add hacker
find hac
find hak
For each find
operation, print a number on a new line representing the count of names with the given prefix. For the sample input above, the expected output would be:
2
0
Implement the contact manager based on the above description.