문제 출처 : leetcode.com/problems/reverse-string/
문제 해석 : 문자 배열을 뒤집어라
문제 풀이 : 다양한 방법으로 풀 수 있지만 가장 간단하게 built-in 함수를 이용했다.
가능한 다른 풀이 : index를 이용해서 직접 변경해 줄 수 있다.
풀이 코드
class Solution:
def reverseString(self, s) -> None:
s.reverse()
if __name__=="__main__":
solution = Solution()
s = ["h","e","l","l","o"]
solution.reverseString(s)
print(s)
author : donghak park
contact : donghark03@naver.com
## 문제의 저작권은 LeetCode 사이트에 있습니다. 혹시 문제가 되는 부분이 있으면 연락 바랍니다.
'📊알고리즘, 문제풀이 > 📈문제풀이 (PS)' 카테고리의 다른 글
[알고리즘][Python] LeetCode 819 Most Common Word 문제 풀이 (0) | 2021.02.16 |
---|---|
[알고리즘][Python] LeetCode 937 Reorder Data in Log Files 문제 풀이 (0) | 2021.02.15 |
[알고리즘][Python] LeetCode 125 Valid Palindrome 문제 풀이 (0) | 2021.02.14 |
[알고리즘][Python] 백준 14889 스타트와 링크 문제 풀이 (0) | 2021.02.09 |
[알고리즘][Python] 백준 14503 로봇 청소기 문제 풀이 (0) | 2021.02.08 |