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 | 31 |
Tags
- 금융문자분석경진대회
- hackerrank
- programmers
- 편스토랑 우승상품
- gs25
- SW Expert Academy
- ubuntu
- AI 경진대회
- 파이썬
- Kaggle
- Git
- PYTHON
- github
- 우분투
- 데이콘
- 코로나19
- dacon
- ChatGPT
- 프로그래머스 파이썬
- leetcode
- Real or Not? NLP with Disaster Tweets
- 백준
- 프로그래머스
- 맥북
- 편스토랑
- 캐치카페
- 자연어처리
- Docker
- 더현대서울 맛집
- Baekjoon
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 151. Reverse Words in a String (Python) 본문
728x90
반응형
Given an input string, reverse the string word by word.
Example 1:
Input: "the sky is blue"
Output: "blue is sky the"
Example 2:
Input: " hello world! "
Output: "world! hello"
Explanation: Your reversed string should not contain leading or trailing spaces.
Example 3:
Input: "a good example"
Output: "example good a"
Explanation: You need to reduce multiple spaces between two words to a single space in the reversed string.
Note:
- A word is defined as a sequence of non-space characters.
- Input string may contain leading or trailing spaces. However, your reversed string should not contain leading or trailing spaces.
- You need to reduce multiple spaces between two words to a single space in the reversed string.
Follow up:
For C programmers, try to solve it in-place in O(1) extra space.
Solution
class Solution:
def reverseWords(self, string) -> str:
string.strip()
split_strings = string.split()
reversed_split_strings = list(reversed(split_strings))
answer = ' '.join(reversed_split_strings)
return answer
Solution 풀이
먼저 입력 받은 문자열에서 앞 뒤 공백을 strip( ) 함수를 통해 제거해줍니다.
그 후 split( ) 함수를 통해 공백을 기준으로 나눈 문자열들을 list로 만들어주고
reversed( ) 함수를 통해 거꾸로 바꾸어준 후
' '.join( ) 함수를 통해 다시 문자열로 바꾸어 return 합니다.
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 414. Third Maximum Number (Python) (0) | 2020.03.05 |
---|---|
[leetCode] 21. Merge Two Sorted Lists (Python) (0) | 2020.03.04 |
[BaeKJoon] 11656번: 접미사 배열 (Python) (0) | 2020.03.02 |
[Programmers] 스택/큐 : 프린터 (Python) (0) | 2020.03.01 |
[leetCode] 7. Median of Two Sorted Arrays (Python) (2) | 2020.02.29 |
Comments