728x90
https://school.programmers.co.kr/learn/courses/30/lessons/155652?language=cpp
소스코드
#include <string>
#include <vector>
using namespace std;
string solution(string s, string skip, int index) {
string answer = "";
for (int i = 0; i < s.size(); i++)
{
char c = s[i];
for (int j = 0; j < index;)
{
c = (char)(c + 1);
if (c > 'z')
c = 'a';
if (skip.find(c) != string::npos)
continue;
j++;
}
answer += c;
}
return answer;
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv1 크기가 작은 부분 문자열 C++ (0) | 2023.08.11 |
---|---|
[프로그래머스]Lv1 개인정보 수집 유효기간 C++ (0) | 2023.08.11 |
[프로그래머스]Lv1 카드 뭉치 C++ (0) | 2023.08.07 |
[프로그래머스]Lv.1 대충 만든 자판 C++ (0) | 2023.08.07 |
[프로그래머스]Lv.1 덧칠하기 C++ (0) | 2023.08.07 |