728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181900
소스코드1
using System;
public class Solution
{
public string solution(string my_string, int[] indices)
{
char[] chars = my_string.ToCharArray();
for (int i = 0; i < indices.Length; i++)
{
int sIdx = indices[i];
chars[sIdx] = ' ';
}
return new string(chars).Replace(" ", "");
}
}
소스코드2
using System;
public class Solution
{
public string solution(string my_string, int[] indices)
{
return new string(my_string.Where((w, index) => !indices.Contains(index)).ToArray());
}
}
728x90
'코딩공부 > 프로그래머스' 카테고리의 다른 글
[프로그래머스]Lv.0 왼쪽 오른쪽 C# (Array.IndexOf, skip, take) (0) | 2023.06.07 |
---|---|
[프로그래머스]Lv.0 순서 바꾸기 C# (Array.Copy, skip, take) (0) | 2023.06.07 |
[프로그래머스]Lv.0 배열 조각하기 C# (RemoveRange, Take, Skip) (2) | 2023.06.07 |
[프로그래머스]Lv.0 문자열 여러 번 뒤집기 C# (Aarray.Reverse) (0) | 2023.06.07 |
[프로그래머스]Lv.0 9로 나눈 나머지 C# (string 배열 형변환 없이) (0) | 2023.06.07 |