Coding Test/프로그래머스
[프로그래머스/자바] 특정 문자 제거하기
yurison
2023. 4. 12. 15:32
class Solution {
public String solution(String my_string, String letter) {
return my_string.replace(letter, "");
}
}