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
- 편스토랑
- AI 경진대회
- PYTHON
- 데이콘
- 프로그래머스
- gs25
- 맥북
- 파이썬
- 프로그래머스 파이썬
- 더현대서울 맛집
- Real or Not? NLP with Disaster Tweets
- 자연어처리
- 백준
- github
- Docker
- 편스토랑 우승상품
- 코로나19
- ChatGPT
- leetcode
- ubuntu
- Kaggle
- 캐치카페
- 우분투
- programmers
- SW Expert Academy
- 금융문자분석경진대회
- dacon
- Git
- Baekjoon
- hackerrank
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 17413번 : 단어 뒤집기 2 (Python) 본문
728x90
반응형
코딩 1일 1문제! 오늘의 문제는 백준의 단어 뒤집기 2 입니다.
Solution
def word_flipping(string):
results = []
temp, words = "", ""
tag_flag, word_flag = False, True
for char in string:
if char == "<":
tag_flag = True
word_flag = False
words = words.split()
words = [word[::-1] for word in words]
results.append(" ".join(words))
words = ""
if tag_flag:
temp += char
if word_flag:
words += char
if char == ">":
tag_flag = False
word_flag = True
results.append(temp)
temp = ""
if word_flag:
words = words.split()
words = [word[::-1] for word in words]
results.append(" ".join(words))
return "".join(results)
if __name__ == "__main__":
string = input()
print(word_flipping(string))
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 4470번 : 줄번호 (Python) (0) | 2021.08.05 |
---|---|
[BaekJoon] 11944번 : NN (Python) (0) | 2021.08.04 |
[BaekJoon] 1541번 : 잃어버린 괄호 (Python) (2) | 2021.08.02 |
[BaekJoon] 8949번 : 대충 더해 (Python) (0) | 2021.08.01 |
[BaekJoon] 5597번 : 과제 안 내신 분..? (Python) (0) | 2021.07.31 |
Comments