Shuffle String

As a Systems Engineer at Tata Consultancy Services, I deliver exceptional software products for mobile and web platforms, using agile methodologies and robust quality maintenance. I am experienced in performance testing, automation testing, API testing, and manual testing, with various tools and technologies such as Jmeter, Azure LoadTest, Selenium, Java, OOPS, Maven, TestNG, and Postman.
I have successfully developed and executed detailed test plans, test cases, and scripts for Android and web applications, ensuring high-quality standards and user satisfaction. I have also demonstrated my proficiency in manual REST API testing with Postman, as well as in end-to-end performance and automation testing using Jmeter and selenium with Java, TestNG and Maven. Additionally, I have utilized Azure DevOps for bug tracking and issue management.
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<sup>th</sup> position moves to indices[i] in the shuffled string.
Return the shuffled string.
LeetCode Problem - 1528
class Solution {
public String restoreString(String s, int[] indices) {
// Create a character array to store the restored string.
char[] result = new char[indices.length];
// Iterate through the indices.
for (int i=0; i<indices.length; i++){
// Place the character from the original string at the position specified by the current index.
result[indices[i]] = s.charAt(i);
}
// Convert the character array to a string and return.
return new String(result);
}
}




