카테고리 없음

[Programmers] 모음 제거

콜라맛갈비 2023. 3. 31. 13:19
728x90

https://school.programmers.co.kr/learn/courses/30/lessons/120849

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

def solution(my_string):
    table = my_string.maketrans({
        'a':'',
        'e':'',
        'i':'',
        'o':'',
        'u':'',
    })
    answer = my_string.translate(table)
    
    return answer

 

 

 

def solution(my_string):
    import re
    answer = re.sub(r"[a|e|i|o|u]", "", my_string)
    
    return answer

https://bigdata-ha.tistory.com/131

728x90