-
프로그래머스: 옹알이(2)코딩테스트 문제 풀이/프로그래머스 2023. 11. 23. 00:09
내 코드
class Solution { public int solution(String[] babbling) { int answer = 0; String[] words = {"aya", "ye", "woo", "ma"}; for (String b: babbling) { for (String word: words) { if (!b.contains(word + word)) b = b.replace(word, " "); } if ("".equals(b.replace(" ", ""))) answer++; } return answer; } }
처음 풀어본 날짜 : 23.03.31 다시 풀어본 날짜 : 23.04.01 _ 23.04.02
'코딩테스트 문제 풀이 > 프로그래머스' 카테고리의 다른 글
프로그래머스 : 신규 아이디 추천 (0) 2023.11.23 프로그래머스 : 신고 결과 받기 (0) 2023.11.23 프로그래머스: 문자열 내 마음대로 정렬하기 (0) 2023.11.23 프로그래머스 : 정수 내림차순으로 배치하기 (0) 2023.11.23 프로그래머스 : 실패율 (0) 2023.11.23