최대 1 분 소요

문제

p60

해결과정

  • 문자열을 변경하는 함수 replace 활용
  • 대문자로 변경하는 toUpperCase() 사용
// 자바 source
class Solution {
    public String solution(String my_string, String alp) {
        String answer = "";
        answer = my_string.replace(alp, alp.toUpperCase());
        return answer;
    }
}