Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- bootstrapModal
- 백준
- 동적웹페이지
- 월간코드챌린지시즌3
- Node
- Programmers
- 코딩테스트연습
- REACT
- 안드로이드
- 프로그래머스
- java
- bootstrap
- 연습문제
- Fullcalendar
- php
- SimpleDateFormat
- 모달
- 부트스트랩
- 나머지가1
- 스킬체크테스트
- Summer/WinterCoding
- AJAX
- 스킬체크
- level1
- MSSQL
- modal
- androidstudio
- Android
- 코딩테스트
- 월간코드챌린지시즌2
Archives
- Today
- Total
목록나누어떨어지는숫자배열 (1)
개발하는 고양이 오이
22. [JAVA] 프로그래머스 코딩테스트 연습 Level.1 - 나누어 떨어지는 숫자 배열 / 다른 사람의 풀이
https://programmers.co.kr/learn/challenges 코딩테스트 연습 기초부터 차근차근, 직접 코드를 작성해 보세요. programmers.co.kr 프로그래머스 코딩테스트 연습 Level.1 - 나누어 떨어지는 숫자 배열 풀이 import java.util.*; class Solution { public int[] solution(int[] arr, int divisor) { int[] answer = {0}; ArrayList list = new ArrayList(); int count = 0; for (int i = 0; i < arr.length; i++) { if (arr[i] % divisor == 0) { list.add(arr[i]); // list에 추가 count..
코딩테스트 - JAVA/프로그래머스 Programmers
2022. 5. 2. 18:01