package leetcode_algorithms; public class Solution345{ public static String reverseVowels(String str) { char[] s = str.toCharArray(); int left = 0; int right = s.length-left - 1; while (left < right) { while(left