We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7cf983 commit c2b0cfeCopy full SHA for c2b0cfe
MySQL/find-users-with-valid-e-mails.sql
@@ -0,0 +1,6 @@
1
+# Time: O(n)
2
+# Space: O(n)
3
+
4
+SELECT *
5
+FROM users AS u
6
+WHERE u.mail REGEXP '^[a-zA-Z][a-zA-Z0-9._-]*@leetcode.com$';
0 commit comments