deno.land / x / masx200_leetcode_test@10.6.5 / unique-email-addresses / index.ts

نووسراو ببینە
1
2
3
4
5
6
7
8
9
export default function numUniqueEmails(emails: string[]): number { return new Set(emails.map((email) => { const [first, second] = email.split("@"); // deno-lint-ignore ban-ts-comment //@ts-ignore return first.split("+")[0].replaceAll(".", "") + "@" + second; })).size;}
masx200_leetcode_test

Version Info

Tagged at
a year ago