프로그래머스 120849 모음 제거

1 개요[ | ]

프로그래머스 120849 모음 제거

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

string solution(string my_string) {
    string answer = "";
    for(const auto& ch: my_string) {
        if(ch=='a' || ch=='e' || ch=='i' || ch=='o' || ch=='u') {
            continue;
        }
        answer += ch;
    }
    return answer;
}
#include <string>
#include <vector>
#include <regex>
using namespace std;

string solution(string my_string) {
    return regex_replace(my_string, regex("[aeiou]"), "");
}