코딩테스트/[C#] 프로그래머스
[프로그래머스 | C# | Lv.0] 특정한 문자를 대문자로 바꾸기
냠냠쿠
2023. 8. 29. 18:59
728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181873
📝 나의 풀이
using System;
public class Solution {
public string solution(string my_string, string alp) {
string answer = my_string.Replace(alp, alp.ToUpper());
return answer;
}
}
728x90