Convert an email address into a partially masked string.
Constraints
Example
>>> mask_email("alice@example.com")
'a***e@example.com'
>>> mask_email("ab@example.com")
'ab@example.com'
>>> mask_email("a@example.com")
'a@example.com'
Recent Submissions
No submissions yet — hit Run Tests to try!
Hints