Leetcode 345 Solution
This article provides solution to leetcode question 345 (reverse-vowels-of-a-string)
Access this page by simply typing in "lcs 345" in your browser address bar if you have bunnylol configured.
Leetcode Question Link
https://leetcode.com/problems/reverse-vowels-of-a-string
Solution
class Solution {
public:
string reverseVowels(string s) {
int l = 0;
int r = s.size() - 1;
while (l < r)
{
while (l < s.size() && !(s[l] == 'a' || s[l] == 'e' || s[l] == 'i' || s[l] == 'o' || s[l] == 'u'
|| s[l] == 'A' || s[l] == 'E' || s[l] == 'I' || s[l] == 'O' || s[l] == 'U'))
l++;
while (r >= 0 && !(s[r] == 'a' || s[r] == 'e' || s[r] == 'i' || s[r] == 'o' || s[r] == 'u'
|| s[r] == 'A' || s[r] == 'E' || s[r] == 'I' || s[r] == 'O' || s[r] == 'U'))
r--;
if (l >= r)
break;
swap(s[l++], s[r--]);
}
return s;
}
};