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.
This was definitely a great start for me. For some reason this logic will not validate if the length is 10 digits and had to make the following change:
for i in range(int(input())):
a = input()
if re.search(r'([789]\d{9}?)',a) and len(a) == 10:
print ('YES')
else:
print('NO')
Cookie support is required to access HackerRank
Seems like cookies are disabled on this browser, please enable them to open this website
Validating phone numbers
You are viewing a single comment's thread. Return to all comments →
This was definitely a great start for me. For some reason this logic will not validate if the length is 10 digits and had to make the following change:
for i in range(int(input())): a = input() if re.search(r'([789]\d{9}?)',a) and len(a) == 10: print ('YES') else: print('NO')