Find Users With Valid E-Mails — LeetCode 1517 Python Solution
EasyDatabase
- Problem
- #1517
- Reading time
- 2 min
- Source
- leetcode.com
Table schema
SQL
Table: Users +---------------+---------+ | Column Name | Type | +---------------+---------+ | user_id | int | | name | varchar | | mail | varchar | +---------------+---------+ user_id is the primary key (column with unique values) for this table. This table contains information of the users signed up in a website.Example
SQL
+---------------+---------+
| Column Name | Type |
+---------------+---------+
| user_id | int |
| name | varchar |
| mail | varchar |
+---------------+---------+
user_id is the primary key (column with unique values) for this table.
This table contains information of the users signed up in a website. Some e-mails are invalid.Python solution
Python
import pandas as pd
def valid_emails(users: pd.DataFrame) -> pd.DataFrame:
pattern = r"^[A-Za-z][A-Za-z0-9_.-]*@leetcode\.com$"
mask = users["mail"].str.match(pattern, flags=0, na=False)
return users.loc[mask, ["user_id", "name", "mail"]]Complexity
| Measure | Complexity |
|---|---|
| Time | O(n log n) (typical) |
| Space | O(n) auxiliary |
Related problems
Frequently asked questions
- How hard is LeetCode 1517. Find Users With Valid E-Mails?
- LeetCode 1517. Find Users With Valid E-Mails is rated Easy on LeetCode.
- What topics does LeetCode 1517. Find Users With Valid E-Mails cover?
- LeetCode 1517. Find Users With Valid E-Mails is tagged Database on LeetCode.