반응형
https://programmers.co.kr/learn/courses/30/lessons/12918
단순 반복문 구현
def solution(s:str):
if s.isdigit():
if len(s) in[4,6]:
return True
return False
한번 더 풀면서 수정한 코드
def solution(s:str):
return True if s.isdigit() and len(s) in (4,6) else False
반응형
'ETC' 카테고리의 다른 글
[LV1] 프로그래머스 [1차] 다트 게임 python (0) | 2020.10.04 |
---|---|
[LV1] 프로그래머스 서울에서 김서방 찾기 python (0) | 2020.10.04 |
[LV1] 프로그래머스 문자열 내림차순으로 배치하기 python (0) | 2020.10.04 |
[LV1] 프로그래머스 문자열 내 p와 y의 개수 python (0) | 2020.10.04 |
[LV1] 프로그래머스 문자열 내 마음대로 정렬하기 python (0) | 2020.10.04 |