📌프로그래머스 181870
💡풀이
- List를 사용해 ad가 포함되지 않은 문자열만 추가.
public string[] ad제거하기(string[] strArr)
{
List<string> strList = new List<string>();
foreach(string s in strArr)
if (!s.Contains("ad"))
strList.Add(s);
return strList.ToArray();
}
'프로그래머스' 카테고리의 다른 글
뒤에서 5등 위로 (C#) (0) | 2024.05.26 |
---|---|
조건에 맞게 수열 변환하기 3 (C#) (0) | 2024.05.26 |
0 떼기 (C#) (0) | 2024.05.25 |
부분 문자열인지 확인하기 (C#) (0) | 2024.05.25 |
부분 문자열 (C#) (0) | 2024.05.25 |