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
- 파이썬
- Kaggle
- Docker
- 백준
- 캐치카페
- 데이콘
- dacon
- PYTHON
- hackerrank
- 자연어처리
- 프로그래머스 파이썬
- ubuntu
- 편스토랑
- gs25
- github
- 코로나19
- SW Expert Academy
- Baekjoon
- Real or Not? NLP with Disaster Tweets
- leetcode
- 프로그래머스
- AI 경진대회
- ChatGPT
- 편스토랑 우승상품
- Git
- 금융문자분석경진대회
- programmers
- 더현대서울 맛집
- 우분투
- 맥북
Archives
- Today
- Total
솜씨좋은장씨
[leetCode] 1844. Replace All Digits with Characters (Python) 본문
Programming/코딩 1일 1문제
[leetCode] 1844. Replace All Digits with Characters (Python)
솜씨좋은장씨 2022. 2. 6. 15:08728x90
반응형
코딩 1일 1문제! 오늘의 문제는 leetCode의 1844번 Replace All Digits with Characters 입니다.
👨🏻💻 문제 풀이
enumerate, isdigit, ord와 chr을 활용하여 문제를 풀었습니다.
입력받은 문자열에서 하나씩 꺼내오면서 숫자일 경우에 이전 단어를 꺼내서 ord로 숫자로 바꾸어준 다음
숫자를 더하고 이걸 다시 chr로 a-z 사이의 값으로 바꾸어주면 됩니다.
s_list = list(s)
for idx, w in enumerate(s_list):
if w.isdigit():
s_list[idx] = chr(ord(s_list[idx-1]) + int(w))
정답은 이 값들을 join한 값입니다.
"".join(s_list)
👨🏻💻 코드 ( Solution )
class Solution:
def replaceDigits(self, s: str) -> str:
s_list = list(s)
for idx, w in enumerate(s_list):
if w.isdigit():
s_list[idx] = chr(ord(s_list[idx-1]) + int(w))
return "".join(s_list)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[BaekJoon] 10926번 : ??! (Python) (0) | 2022.02.08 |
---|---|
[BaekJoon] 11723번 : 집합 (Python) (0) | 2022.02.07 |
[leetCode] 1748. Sum of Unique Elements (Python) (0) | 2022.02.05 |
[leetCode] 1880. Check if Word Equals Summation of Two Words (Python) (0) | 2022.02.04 |
[leetCode] 1859. Sorting the Sentence (Python) (0) | 2022.02.03 |
Comments