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
- Baekjoon
- 자연어처리
- 편스토랑
- hackerrank
- 프로그래머스
- gs25
- 더현대서울 맛집
- SW Expert Academy
- ubuntu
- PYTHON
- programmers
- Docker
- Kaggle
- 프로그래머스 파이썬
- 캐치카페
- 편스토랑 우승상품
- dacon
- Real or Not? NLP with Disaster Tweets
- AI 경진대회
- Git
- 백준
- leetcode
- github
- 코로나19
- 데이콘
- 맥북
- 우분투
- 파이썬
- 금융문자분석경진대회
- ChatGPT
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 344. Reverse String (Python) 본문
728x90
반응형
Write a function that reverses a string. The input string is given as an array of characters char[].
Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory.
You may assume all the characters consist of printable ascii characters.
Example 1:
Input: ["h","e","l","l","o"]
Output: ["o","l","l","e","h"]
Example 2:
Input: ["H","a","n","n","a","h"]
Output: ["h","a","n","n","a","H"]
Solution
class Solution:
def reverseString(self, s):
s.reverse()
이 문제는
s[::-1]
등과 같은 다른 방법이 많음에도 불구하고 이상하게 s.reverse() 이외에는 답이 제대로 나오지 않는 상황이 있었습니다.
추후 다른 방법으로 제대로된 결과가 나온다면 내용을 업데이트하려고 합니다.
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[HackerRank] HackerRank in a String! (Python) (0) | 2020.06.10 |
---|---|
[leetCode] 268. Missing Number (Python) (0) | 2020.06.09 |
[leetCode] 326. Power of Three (Python) (0) | 2020.06.07 |
[leetCode] 204. Count Primes (Python) (0) | 2020.06.06 |
[leetCode] 29. Divide Two Integers (Python) (2) | 2020.06.05 |
Comments