1528. 重新排列字符串

题目描述

给你一个字符串 s 和一个 长度相同 的整数数组 indices 。
请你重新排列字符串 s ,其中第 i 个字符需要移动到 indices[i] 指示的位置。
返回重新排列后的字符串。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/shuffle-string
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

leetcode地址

题解

class Solution {
    public String restoreString(String s, int[] indices) {
        if( s== null || s.length()==0)
            return "";
        int length = s.length();
        char[] sArr = new char[length];

        for (int i = 0; i < length; i++) {
            sArr[indices[i]] = s.charAt(i);
        }

        return String.valueOf(sArr);
    }
}

你可能感兴趣的:(1528. 重新排列字符串)