관리 메뉴

솜씨좋은장씨

[leetCode] 1844. Replace All Digits with Characters (Python) 본문

Programming/코딩 1일 1문제

[leetCode] 1844. Replace All Digits with Characters (Python)

솜씨좋은장씨 2022. 2. 6. 15:08
728x90
반응형

코딩 1일 1문제! 오늘의 문제는 leetCode의 1844번 Replace All Digits with Characters 입니다.

 

Replace All Digits with Characters - LeetCode

Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.

leetcode.com

👨🏻‍💻 문제 풀이

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)

 

GitHub - SOMJANG/CODINGTEST_PRACTICE: 1일 1문제 since 2020.02.07

1일 1문제 since 2020.02.07. Contribute to SOMJANG/CODINGTEST_PRACTICE development by creating an account on GitHub.

github.com

Comments