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.
n = int(input())
for i in range(n):
num = input()
if num[0] in ['7','8','9'] and len(num)==10:
c = 0
for j in num:
if ord(j) not in range(48,58):
c += 1
print('NO')
if c == 0:
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 →
cannot pass one test case. cant understand why.