Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 백준 15685
- 백준 17626
- MSA
- Kotlin
- 백준 16719
- MySQL
- JVM
- JPA
- sql 기술면접
- re.split
- 백준 파이썬
- 백준
- 백준 16236
- 백준 19238
- springboot
- java 기술면접
- Spring Boot
- spring security
- 파이썬
- java
- 웹어플리케이션 서버
- 프로그래머스
- spring oauth
- with recursive
- spring cloud
- 백준 17779
- Spring
- Coroutine
- 프로래머스
- 백준 16235
Archives
- Today
- Total
시작이 반
[프로그래머스] 신규 아이디 추천(python 파이썬) 본문
SMALL
programmers.co.kr/learn/courses/30/lessons/72410
정규 표현식 이용
import re
def solution(new_id):
#1단계
answer = new_id.lower()
#2단계
answer = re.sub('[~!@#$%^&*\(\)=+\[\{\]\}:?,\<\>/]', '', answer)
#3단계
answer = re.sub('\.+', '.', answer)
#4단계
if answer:
if answer[0] == '.':
answer = answer[1:]
if answer:
if answer[-1] == '.':
answer = answer[:-1]
#5단계
if not answer:
answer = 'a'
#6단계
answer = answer[:15]
if answer:
if answer[-1] == '.':
answer = answer[:-1]
#7단계
if len(answer) < 3:
answer = answer + answer[-1]*(3 - len(answer))
return answer
solution("z-+.^.")
LIST
'알고리즘 > Programmers' 카테고리의 다른 글
[프로그래머스] 순위 검색(python 파이썬) (2) | 2021.03.19 |
---|---|
[프로그래머스] 메뉴 리뉴얼(python 파이썬) (0) | 2021.03.18 |
[프로그래머스] 등굣길(python 파이썬) (0) | 2021.03.12 |
[프로그래머스] N으로 표현(python 파이썬) (0) | 2021.03.11 |
[프로그래머스] 정수 삼각형(python 파이썬) (0) | 2021.03.11 |