Notice
Recent Posts
Recent Comments
Link
코드로 우주평화
Regex validate PIN code 본문
반응형
Description:
ATM machines allow 4 or 6 digit PIN codes and PIN codes cannot contain anything but exactly 4 digits or exactly 6 digits.
If the function is passed a valid PIN string, return true, else return false.
Examples (Input --> Output)
Solution:
1. 인자가 숫자인지 확인한다.
2. 인자의 길이가 4 혹은 6이라면 pin을 반환한다.
def validate_pin(pin):
return pin.isdigit() and len(pin) in (4, 6)
반응형
'나는 이렇게 학습한다 > Algorithm & SQL' 카테고리의 다른 글
Square Every Digit (0) | 2022.04.18 |
---|---|
Sort Numbers (0) | 2022.04.17 |
Get the mean of an array (0) | 2022.04.15 |
Sum of Odd Cubed Numbers (0) | 2022.04.14 |
Century From Year (0) | 2022.04.13 |