728x90
반응형
문제
코드
#include <string>
#include <vector>
using namespace std;
string solution(string code) {
string answer = "";
bool mode = false;
for(int i = 0; i<code.length(); ++i)
{
if(!mode)
{
if(code[i] != '1' && i %2 == 0)
{
answer+=code[i];
}
else if(code[i] == '1')
{
mode = true;
}
}
else
{
if(code[i] != '1' && i %2 == 1)
{
answer+=code[i];
}
else if(code[i] == '1')
{
mode = false;
}
}
}
if (answer.empty())
{
answer = "EMPTY";
}
return answer;
}
지문이 어려웠다.
728x90
반응형
'코딩테스트 > 프로그래머스(C++)_Level.0' 카테고리의 다른 글
[프로그래머스/C++] Lv.0 주사위 게임2 (0) | 2023.10.17 |
---|---|
[프로그래머스/C++] Lv.0 등차수열의 특정한 항만 더하기 (0) | 2023.10.16 |
[프로그래머스/C++] Lv.flag 에 따라 다른 값 반환하기 (0) | 2023.10.14 |
[프로그래머스/C++] Lv.0 조건 문자열 (0) | 2023.10.14 |
[프로그래머스/C++] Lv.0 홀짝에 따라 다른 값 반환하기 (0) | 2023.10.12 |