728x90 반응형 프로그래머스66 프로그래머스 - 모음 제거 class Solution { public String solution(String my_string) { String answer = ""; answer = my_string.replaceAll("[a,e,i,o,u]",""); return answer; } } 2023. 3. 3. 프로그래머스 - 문자열안에 문자열 class Solution { public int solution(String str1, String str2) { if(str1.contains(str2)){ return 1; } else{ return 2; } } } 2023. 3. 3. 프로그래머스 - 숨어있는 숫자의 덧셈 (1) class Solution { public int solution(String my_string) { int answer = 0; String replace = ""; replace = my_string.toLowerCase().replaceAll("[a-z]", ""); String[] arry = replace.split(""); for(int i = 0; i< arry.length; i++) { answer += Integer.parseInt(arry[i]); } return answer; } } 2023. 2. 23. 프로그래머스 - 자릿수 더하기 class Solution { public int solution(int n) { int answer = 0; while(n>0){ answer += n%10; n /= 10; } return answer; } } 2023. 2. 23. 이전 1 ··· 5 6 7 8 9 10 11 ··· 17 다음 728x90 반응형