간단한 string 덧붙이기 문제. 오버라이딩 된 string 연산 중 + 연산을 사용하면 매우 간단하다.
#include <iostream>
#include <string>
using namespace std;
string solution(int n)
{
string answer = "";
for(int i=0; i<n; ++i)
{
if(i%2==0)
answer += "수";
else
answer += "박";
}
return answer;
}
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 전화번호 목록 (1) | 2019.10.29 |
---|---|
[프로그래머스] 큰 수 만들기 (0) | 2019.09.09 |