프로그래머스 120854 배열 원소의 길이

1 개요[ | ]

프로그래머스 120854 배열 원소의 길이

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

vector<int> solution(vector<string> strlist) {
    vector<int> answer;
    for(auto& str: strlist) {
        answer.push_back(str.length());
    }
    return answer;
}