Masking Personal Information — LeetCode 831 Python Solution

MediumString
Problem
#831
Pattern
Hash Map
Reading time
2 min

The problem

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.

Example

Input
s = "LeetCode@LeetCode.com"
Output
"l*****e@leetcode.com"
Explanation
s is an email address.

Python solution

Python
class Solution:
    def maskPII(self, s: str) -> str:
        if s[0].isalpha():
            s = s.lower()
            return s[0] + '*****' + s[s.find('@') - 1 :]
        s = ''.join(c for c in s if c.isdigit())
        cnt = len(s) - 10
        suf = '***-***-' + s[-4:]
        return suf if cnt == 0 else f'+{"*" * cnt}-{suf}'

Complexity

MeasureComplexity
TimeO(n)
SpaceO(n), where n is the length of the string s auxiliary

Pattern: Hash Map

Trade memory for time: remember what you have seen so the second pass never happens. LeetCode 831. Masking Personal Information is filed here because the reference solution below belongs to the algorithm family this hub collects, even though its LeetCode tags point elsewhere.

The hash map guide has the Python template for the pattern and the 709 LeetCode problems that use it.

Related problems

Frequently asked questions

How hard is LeetCode 831. Masking Personal Information?
LeetCode 831. Masking Personal Information is rated Medium on LeetCode.
What is the time complexity of LeetCode 831. Masking Personal Information?
The Python solution on this page runs in O(n).
What is the space complexity of LeetCode 831. Masking Personal Information?
The Python solution on this page uses O(n), where n is the length of the string s auxiliary space.
What topics does LeetCode 831. Masking Personal Information cover?
LeetCode 831. Masking Personal Information is tagged String on LeetCode.

Stuck on problems like this in a live interview?

Stealth Interview is a desktop app for macOS and Windows. It reads the problem off your screen and returns a working solution with a step-by-step explanation and its time and space complexity — invisible to screen sharing.

Get Stealth Interview