https://school.programmers.co.kr/learn/courses/30/lessons/12918
정답코드
(1)
def solution(s):
if (len(s) == 4 or len(s) == 6) and s.isdigit():
answer = True
else:
answer = False
return answer
(2)
def solution(s):
answer = s.isdigit() and len(s) in (4, 6)
return answer
(1)이 본인이 푼 문제이고 (2)은 어디서 주워왔다.
코드를 이렇게 단축 시킬 수 있는 것 보고 감탄하면서 허겁지겁 가져왔는데, 조금만 더 연습해서 저런 좋은 코드로 짤 수 있도록 해봐야겠다.
'Algorithm > 프로그래머스' 카테고리의 다른 글
[프로그래머스] Lv.1 최대공약수와 최소공배수 (0) | 2022.09.12 |
---|---|
[프로그래머스] Lv.1 행렬의 덧셈 (0) | 2022.09.11 |
[프로그래머스] Lv.1 가운데 글자 가져오기 (0) | 2022.09.11 |
[프로그래머스] Lv.1 핸드폰 번호 가리기 (0) | 2022.09.11 |
[프로그래머스] Lv.1 콜라츠 추측 (0) | 2022.09.11 |