"프로그래머스 181841 꼬리 문자열"의 두 판 사이의 차이

(새 문서: ==개요== {{프로그래머스|레벨=0|페이지=6}} ==C++== <syntaxhighlight lang='cpp'> #include <string> #include <vector> using namespace std; string solution(vector<string>...)
 
12번째 줄: 12번째 줄:
     string answer = "";
     string answer = "";
     for(string el: str_list) {
     for(string el: str_list) {
        if(el.find(ex) != string::npos) {
            continue;
        }
        answer += el;
    }
    return answer;
}
</syntaxhighlight>
<syntaxhighlight lang='cpp'>
#include <string>
#include <vector>
using namespace std;
string solution(vector<string> str_list, string ex) {
    string answer = "";
    for(const string& el: str_list) {
         if(el.find(ex) != string::npos) {
         if(el.find(ex) != string::npos) {
             continue;
             continue;

2023년 10월 13일 (금) 19:43 판

1 개요

프로그래머스 181841 꼬리 문자열


2 C++

#include <string>
#include <vector>

using namespace std;

string solution(vector<string> str_list, string ex) {
    string answer = "";
    for(string el: str_list) {
        if(el.find(ex) != string::npos) {
            continue;
        }
        answer += el;
    }
    return answer;
}
#include <string>
#include <vector>

using namespace std;

string solution(vector<string> str_list, string ex) {
    string answer = "";
    for(const string& el: str_list) {
        if(el.find(ex) != string::npos) {
            continue;
        }
        answer += el;
    }
    return answer;
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}