알고리즘

[프로그래머스] 문자열 다루기 기본

hminor 2023. 7. 2. 11:21
def solution(s):
    n_li = [str(i) for i in range(0,10)]
    if not (len(s) == 4 or len(s) == 6): return False 
    for i in s:
        if i not in n_li: return False
    return True