python的leetcode848通俗解法

有一个由小写字母组成的字符串 S,和一个整数数组 shifts。

我们将字母表中的下一个字母称为原字母的 移位(由于字母表是环绕的, 'z' 将会变成 'a')。

例如·,shift('a') = 'b', shift('t') = 'u',, 以及 shift('z') = 'a'。

对于每个 shifts[i] = x , 我们会将 S 中的前 i+1 个字母移位 x 次。

返回将所有这些移位都应用到 S 后最终得到的字符串。

示例:

输入:S = "abc", shifts = [3,5,9]
输出:"rpl"
解释: 
我们以 "abc" 开始。
将 S 中的第 1 个字母移位 3 次后,我们得到 "dbc"。
再将 S 中的前 2 个字母移位 5 次后,我们得到 "igc"。
最后将 S 中的这 3 个字母移位 9 次后,我们得到答案 "rpl"。

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/shifting-letters
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

 


# 关键是前缀的数组要想到,其实都能想到。
from typing import List


class Solution:
    def shiftingLetters(self, S: str, shifts: List[int]) -> str:
        temp = []

        for i in range(len(shifts)):
            temp.append(sum(shifts[i:]))

        res = []
        for i in range(len(shifts)):
            res.append(chr((ord(S[i]) + temp[i] - 97)%26 + 97))
        return "".join(res)


if __name__ == "__main__":
    s = Solution()
    str2 = "abc"
    shifts = [3, 5, 9]
    print(s.shiftingLetters(str2, shifts))

 

你可能感兴趣的:(Python笔记)