Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- k8s
- 알고리즘
- cpu scheduling
- 백준
- Top-down
- 피보나치
- Singleton Pattern
- GCP
- github
- 그리디
- mobaXTerm
- GKE
- Backjoon
- LeetCode
- java
- Dynamic Programming
- golang
- Observer Pattern
- KAKAO
- Codility
- 파이썬
- kubernetes
- go
- docker
- easy
- BubbleSort
- Programmers
- Kotlin
- Python
Archives
- Today
- Total
To Be Developer
[LeetCode] Reverse Words in a String 본문
class Solution(object): def reverseWords(self, s): """ :type s: str :rtype: str """ # return 할 변수 answer = "" # 빈 공간으로 단어를 구분하여 words 라는 리스트 변수에 대입 words = s.split(" ") # list에서 "" 문자를 제거하여 다시 word 에 대입 words = [i for i in words if i!=""] # words 의 길이 ln = len(words) # index 마지막부터 0번까지 반복문을 돌림 for i in range(ln-1, -1, -1): # index 값이 마지막이 아니면 words[i] + " " 을 # 그렇지 않으면 answer에 words[i]를 추가 if i != 0: answer += (words[i]+" ") else : answer += words[i] return answer if __name__ == "__main__": s = " hello world! " sl = Solution().reverseWords(s) print(sl)
'알고리즘 > LeetCode' 카테고리의 다른 글
[LeetCode] 9. Palindrome Number.py (0) | 2019.03.22 |
---|---|
[LeetCode] 217. Contains Duplicate (0) | 2019.03.20 |
[LeetCode] 231. Power of Two (0) | 2019.03.13 |
[LeetCode] 225. Implement Stack using Queues (0) | 2019.03.13 |
[LeetCode] 189. Rotate Array.py (0) | 2019.03.08 |