728x90
<문제 링크>
https://leetcode.com/problems/reverse-words-in-a-string-iii/
<문제 풀이>
- 문자열의 띄어쓰기를 기준으로 각 단어들이 뒤집으면 된다.
<코드>
class Solution:
def reverseWords(self, s: str) -> str:
answer = ''
for i in s.split():
answer += (i[::-1] + ' ')
return answer[:-1]
'두두의 알고리즘 > 문제' 카테고리의 다른 글
[BFS] 릿코드 Medium 695 'Max Area of Island' (Python) (0) | 2022.01.18 |
---|---|
[BFS] 릿코드 Easy 733 'Flood Fill' (Python) (0) | 2022.01.17 |
[기타] 릿코드 Easy 344 'Reverse String' (Python) (0) | 2022.01.13 |
[정렬] 릿코드 Easy 167 'Two Sum II - Input Array Is Sorted' (Python) (0) | 2022.01.13 |
[정렬] 릿코드 Easy 283 'Move Zeroes' (Python) (0) | 2022.01.13 |