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
- Git
- AI 경진대회
- 데이콘
- programmers
- 프로그래머스
- ubuntu
- 맥북
- ChatGPT
- 자연어처리
- github
- 편스토랑
- 파이썬
- Kaggle
- 캐치카페
- 금융문자분석경진대회
- leetcode
- 코로나19
- dacon
- SW Expert Academy
- hackerrank
- Real or Not? NLP with Disaster Tweets
- PYTHON
- 우분투
- gs25
- 백준
- 더현대서울 맛집
- Docker
- 편스토랑 우승상품
- 프로그래머스 파이썬
- Baekjoon
Archives
- Today
- Total
솜씨좋은장씨
[SW Expert Academy] 4406번 : 모음이 보이지 않는 사람 (Python) 본문
728x90
반응형

코딩 1일 1문제! 오늘의 문제는 SW Expert Academy의 모음이 보이지 않는 사람 입니다.
SW Expert Academy
SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!
swexpertacademy.com
👨🏻💻 코드 ( Solution )
def who_can_not_see_the_vowels(words):
vowels = ['a', 'e', 'i', 'o', 'u']
characters = [word for word in list(words) if word not in vowels]
return "".join(characters)
if __name__ == "__main__":
for idx in range(int(input())):
words = input()
print(f"#{idx+1} {who_can_not_see_the_vowels(words)}")
GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07
1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.
github.com
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[SW Expert Academy] 1976번 : 시각 덧셈 (Python) (0) | 2021.11.30 |
---|---|
[SW Expert Academy] 1966번 : 숫자를 정렬하자 (Python) (1) | 2021.11.29 |
[SW Expert Academy] 1948번 : 날짜 계산기 (Python) (0) | 2021.11.27 |
[SW Expert Academy] 2063번 : 중간값 찾기 (Python) (0) | 2021.11.26 |
[BaekJoon] 1026번 : 보물 (Python) (1) | 2021.11.25 |