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 가까운 1 찾기 C# (linq 포함) (0) | 2023.06.07 |
---|---|
[프로그래머스]Lv.0 카운트 다운C# (linq 포함) (0) | 2023.06.07 |
[프로그래머스]Lv.0 배열 만들기 1 C# (for 곱셈 linq 포함) (0) | 2023.06.07 |
[프로그래머스]Lv.0 문자 개수 세기 C# (char - char = int) (0) | 2023.06.07 |
[프로그래머스]Lv.0 qr code C# (0) | 2023.06.07 |