• + 5 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')