g1901_2000.s2000_reverse_prefix_of_word.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g1901_2000.s2000_reverse_prefix_of_word;
// #Easy #String #Two_Pointers #2022_05_09_Time_0_ms_(100.00%)_Space_40.7_MB_(79.75%)
public class Solution {
public String reversePrefix(String word, char ch) {
int i = 0;
int j = word.indexOf(ch);
char[] charArr = word.toCharArray();
while (i < j) {
char temp = charArr[i];
charArr[i] = charArr[j];
charArr[j] = temp;
i++;
j--;
}
return String.valueOf(charArr);
}
}