728x90
https://school.programmers.co.kr/learn/courses/30/lessons/155652
소스코드
using System;
public class Solution
{
public string solution(string s, string skip, int index)
{
string answer = "";
foreach (char ch in s)
{
char temp = ch;
int count = 0;
while (count < index)
{
temp = (char)(temp + 1);
if (temp > 'z')
temp = 'a';
if (skip.Contains(temp))
continue;
count++;
}
answer += temp;
}
return answer;
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.1 가장 가까운 같은 글자 C# (0) | 2023.06.13 |
---|---|
[프로그래머스]Lv.1 개인정보 수집 유효기간 C# (0) | 2023.06.13 |
[프로그래머스]Lv.1 카드 뭉치 C# (0) | 2023.06.12 |
※[프로그래머스]Lv.1 대충 만든 자판 C# (0) | 2023.06.12 |
※[프로그래머스]Lv.1 덧칠하기 C# (0) | 2023.06.12 |