728x90
반응형
문제
코드
#include <string>
#include <vector>
using namespace std;
string solution(vector<string> arr) {
string answer = "";
for (const string c : arr)
{
answer += c;
}
return answer;
}
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스] Lv.0 더 크게 합치기 (0) | 2023.10.12 |
---|---|
[프로그래머스] Lv.0 문자열 곱하기 (0) | 2023.10.12 |
[프로그래머스] Lv.0 문자열 섞기 (0) | 2023.10.12 |
[프로그래머스] Lv.0 문자열 겹쳐쓰기 (0) | 2023.10.12 |
[프로그래머스] Lv.0 홀짝 구분하기 (0) | 2023.10.11 |