/* Given a specific street that each id represents a street address:
StreetNode
{
int id,
string address
}
and a list of recipient emails that are interested in a street address.
Below we have the two lists respectively. Below we have one to one matching.
FavoritedAddresses = ["Edison Ln", "Seneca park", "Procera St" , ...]
Emails = ["test1@gmail.com", "test2@gmail.com", "test1@gmail.com", ...]
We want to return the list of the recipients that have favorited the specific street address.
Example:
input:
street = new StreetNode() {1, "Procera Dr."}
FavoritedAddresses = ["Edison Ln", "Seneca park", "Procera Dr" , "7th Street", "Procera Dr."]
Emails = ["temp@gmail.com", "temp2@gmail.com", "temp3@gmail.com", "temp@gmail.com", "temp@gmail.com"]
Output = ["temp3@gmail.com", "temp@gmail.com"]*/