Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 편스토랑
- Docker
- 데이콘
- hackerrank
- 자연어처리
- github
- 코로나19
- 맥북
- AI 경진대회
- leetcode
- 우분투
- 편스토랑 우승상품
- 프로그래머스
- Kaggle
- 파이썬
- 금융문자분석경진대회
- dacon
- Real or Not? NLP with Disaster Tweets
- programmers
- ubuntu
- 더현대서울 맛집
- ChatGPT
- 캐치카페
- Baekjoon
- gs25
- PYTHON
- 프로그래머스 파이썬
- 백준
- SW Expert Academy
- Git
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 4659번 : 비밀번호 발음하기 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 비밀번호 발음하기 입니다.
👨🏻💻 코드 ( Solution )
import re
def pronounce_the_password(password):
condition1 = re.findall(r"a|e|i|o|u", password)
condition2 = re.findall(r"([a|e|i|o|u]{3})|([^a|e|i|o|u]{3})",password)
condition3 = re.findall(r"([a-df-np-z])\1", password)
if len(condition1) != 0 and len(condition2) == 0 and len(condition3) == 0:
answer = f"<{password}> is acceptable."
else:
answer = f"<{password}> is not acceptable."
return answer
if __name__ == "__main__":
while True:
password = input()
if password == "end":
break
print(pronounce_the_password(password))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 25238번 : 가희와 방어율 무시 (Python) (0) | 2022.06.12 |
---|---|
[BaekJoon] 2896번 : 무알콜 칵테일 (Python) (0) | 2022.06.11 |
[BaekJoon] 1193번 : 분수찾기 (Python) (0) | 2022.06.07 |
[BaekJoon] 10807번 : 개수 세기 (Python) (0) | 2022.06.06 |
[BaekJoon] 23037번 : 5의 수난 (Python) (0) | 2022.06.05 |
Comments