c# leetcode 345. 反转字符串中的元音字母(双指针)

 

编写一个函数,以字符串作为输入,反转该字符串中的元音字母。

示例 1:

输入: "hello"
输出: "holle"
示例 2:

输入: "leetcode"
输出: "leotcede" 

while:

 public static string ReverseVowels(string s)
        {
            var ss = s.ToCharArray();
            int a = 0, b = s.Length - 1;
            while (a= a + 1) b--;
                if (a == b) return new string(ss);

                var h = ss[a];
                ss[a++] = ss[b];
                ss[b--] = h;
            }
            return new string(ss);
        }

 

你可能感兴趣的:(双指针,Leetcode)