Problem Description
You are given a string s
and an integer array indices
of the same length. The string s
will be shuffled such that the character at the i
th position moves to indices[i]
in the shuffled string. Return the shuffled string.
Key Insights
- Each character in the string
s
is moved to a new position defined by theindices
array. - The length of
s
andindices
is guaranteed to be the same. - All values in
indices
are unique and within the bounds of the string length.
Space and Time Complexity
Time Complexity: O(n) - where n is the length of the string. Space Complexity: O(n) - for the output string.
Solution
To solve this problem, we will use an array (or list) to build the resulting shuffled string. We will iterate over the indices
array, and for each index i
, we will place the character from the original string s
at the position specified by indices[i]
. Finally, we will join the array into a string and return it.