1
2
3
4
5
6
7
|
class Solution:
def replaceDigits(self, s: str) -> str:
ans=''
for i in range(len(s)):
if s[i].isalpha(): ans+=s[i]
if s[i].isdigit(): ans+=chr(ord(s[i-1])+int(s[i]))
return ans
|
cs |
반응형
'python-algorithm' 카테고리의 다른 글
leetcode 2108. Find First Palindromic String in the Array (0) | 2022.03.15 |
---|---|
leetcode 2176. Count Equal and Divisible Pairs in an Array (0) | 2022.03.15 |
leetcode 2089. Find Target Indices After Sorting Array (0) | 2022.03.15 |
직사각형 별찍기 (0) | 2022.03.15 |
백준 2139 나는 너가 살아온 날을 알고 있다 (0) | 2022.03.15 |
댓글