Problem Description
You are given a personal information string s, representing either an email address or a phone number. Return the masked personal information using the below rules.
Key Insights
- An email address consists of a name followed by an '@' symbol and a domain with a dot in the middle.
- For emails, convert uppercase letters to lowercase and replace middle letters of the name with five asterisks.
- A phone number is formatted with digits possibly separated by characters like '+', '-', '(', ')', or spaces.
- For phone numbers, remove all separation characters and format the output based on the number of country code digits.
Space and Time Complexity
Time Complexity: O(n), where n is the length of the input string s.
Space Complexity: O(1), as we are only using a constant amount of space for variables.
Solution
To solve this problem, we can start by determining if the input string is an email address or a phone number based on the presence of the '@' symbol.
-
For Email Addresses:
- Split the string into the name and domain parts.
- Convert both parts to lowercase.
- Replace the middle characters of the name with five asterisks.
- Combine them back into the masked email format.
-
For Phone Numbers:
- Remove all non-digit characters to extract the digits.
- Determine the country code based on the number of leading digits.
- Format the output string according to the specified patterns based on the length of the country code.