We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
importredeffun(s):# return True if s is a valid email, else return Falseifbool(re.fullmatch('^[a-zA-Z0-9_-]+@[a-zA-Z0-9]+[.][a-zA-Z]{,3}$',s)):return(True)else:return(False)deffilter_mail(emails):returnlist(filter(fun,emails))if__name__=='__main__':n=int(input())emails=[]for_inrange(n):emails.append(input())filtered_emails=filter_mail(emails)filtered_emails.sort()print(filtered_emails)
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Validating Email Addresses With a Filter
You are viewing a single comment's thread. Return to all comments →