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.
Enter your code here. Read input from STDIN. Print output to STDOUT
import re
T = int(input())
euid =[]
for _ in range(T):
id = input().split()
euid.extend(id)
for uid in euid:
if (len(uid) == 10 and
uid.isalnum() and
len(re.findall(r'[A-Z]', uid)) >= 2 and
len(re.findall(r'\d', uid)) >= 3 and
len(set(uid)) == len(uid)):
print("Valid")
else:
print("Invalid")
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Validating UID
You are viewing a single comment's thread. Return to all comments →
Enter your code here. Read input from STDIN. Print output to STDOUT
import re T = int(input()) euid =[] for _ in range(T): id = input().split() euid.extend(id)
for uid in euid: if (len(uid) == 10 and uid.isalnum() and len(re.findall(r'[A-Z]', uid)) >= 2 and len(re.findall(r'\d', uid)) >= 3 and len(set(uid)) == len(uid)): print("Valid") else: print("Invalid")