#include <string>
#include <vector>
using namespace std;
string solution(int n) {
string answer = "";
vector <string> watermelon {"수", "박"};
for(int i=0;i < n; i++){
answer += watermelon[i%2];
}
return answer;
}
'자윤이와고리즘 > Code' 카테고리의 다른 글
[프로그래머스] 영어 끝말 잇기 (0) | 2019.07.24 |
---|---|
[프로그래머스] 약수의 합 (0) | 2019.07.22 |
[프로그래머스] 나누어 떨어지는 숫자 배열 (0) | 2019.07.22 |
[프로그래머스] 같은 숫자는 싫어 (0) | 2019.07.22 |
[프로그래머스] 가운데 글자 가져오기 (0) | 2019.07.22 |