Initialize an empty hash set to store unique cleaned emails.
Iterate over each email in the input list.
a. Split the email into local name and domain name using the '@' character.
b. Split the local name at the first '+' character and take the first part.
c. Remove all periods from the local name using the replace method.
d. Concatenate the cleaned local name with the domain name.
e. Insert the cleaned email into the hash set.
Return the size of the hash set, which represents the number of unique email addresses.