Leetcode 1528. Shuffle String

Posted SnailTyan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode 1528. Shuffle String相关的知识,希望对你有一定的参考价值。

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

2. Solution

**解析:**Version 1,根据要求,按顺序将字母填到对应位置即可。

  • Version 1
class Solution:
    def restoreString(self, s: str, indices: List[int]) -> str:
        res = ['0'] * len(s)
        for index, pos in enumerate(indices):
            res[pos] = s[index]
        return ''.join(res)

Reference

  1. https://leetcode.com/problems/shuffle-string/

以上是关于Leetcode 1528. Shuffle String的主要内容,如果未能解决你的问题,请参考以下文章

Leetcode 1528. Shuffle String

LeetCode1528. 重新排列字符串(C++)

POJ3087 Shuffle'm Up 简单模拟

leetcode mock Shuffle an Array

[LeetCode] 384. Shuffle an Array 数组洗牌

LeetCode --- 1470. Shuffle the Array 解题报告