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
- 코로나19
- hackerrank
- 데이콘
- 우분투
- Git
- 편스토랑 우승상품
- 더현대서울 맛집
- 프로그래머스 파이썬
- 편스토랑
- Real or Not? NLP with Disaster Tweets
- 자연어처리
- 맥북
- gs25
- programmers
- AI 경진대회
- leetcode
- dacon
- SW Expert Academy
- Baekjoon
- ubuntu
- ChatGPT
- 금융문자분석경진대회
- github
- 프로그래머스
- Kaggle
- Docker
- PYTHON
- 캐치카페
- 파이썬
- 백준
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 26587번 : Reverse (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 Reverse 입니다.
👨🏻💻 코드 ( Solution )
def reverse(string):
vowels = ['a', 'e', 'i', 'o', 'u']
reverse_result = []
reverse_dict = {}
words = string.split()
check_vowels = [word[0] for word in enumerate(words) if word[1][0].lower() in vowels]
reverse_check = check_vowels[::-1]
for idx, check_idx in enumerate(check_vowels):
reverse_dict[check_idx] = words[reverse_check[idx]]
for word_idx, word in enumerate(words):
if word_idx in reverse_dict.keys():
reverse_result.append(reverse_dict[word_idx])
else:
reverse_result.append(word)
return " ".join(reverse_result)
if __name__ == "__main__":
while True:
try:
string = input()
print(reverse(string=string))
except EOFError:
break
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 23808번 : 골뱅이 찍기 - ㅂ (Python) (0) | 2023.01.13 |
---|---|
[BaekJoon] 23806번 : 골뱅이 찍기 - ㅁ (Python) (2) | 2023.01.12 |
[BaekJoon] 27001번 : Bovine Birthday (Python) (0) | 2023.01.09 |
[BaekJoon] 10570번 : Favorite Number (Python) (0) | 2023.01.08 |
[BaekJoon] 26500번 : Absolutely (Python) (0) | 2023.01.07 |
Comments