https://school.programmers.co.kr/learn/courses/30/lessons/120891
public int solution(int order) {
String s = String.valueOf(order);
return (int) s.chars().filter(c -> c == '3' || c == '6' || c == '9').count();
}
'알고리즘 > 프로그래머스' 카테고리의 다른 글
프로그래머스 n의 배수 고르기 (0) | 2022.12.10 |
---|---|
프로그래머스 A로 B만들기 (0) | 2022.12.10 |
프로그래머스 7의 개수 (0) | 2022.12.10 |
프로그래머스 2차원으로 만들기 (0) | 2022.12.10 |
프로그래머스 전화번호 목록 (Python) (0) | 2022.04.17 |