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
- modal
- 월간코드챌린지시즌2
- 동적웹페이지
- SimpleDateFormat
- Android
- 모달
- Fullcalendar
- 부트스트랩
- 연습문제
- bootstrap
- REACT
- androidstudio
- java
- AJAX
- 스킬체크테스트
- 스킬체크
- 월간코드챌린지시즌3
- php
- MSSQL
- 안드로이드
- 코딩테스트연습
- Node
- 코딩테스트
- 나머지가1
- bootstrapModal
- Programmers
- 프로그래머스
- 백준
- Summer/WinterCoding
- level1
Archives
- Today
- Total
목록K번째수 (1)
개발하는 고양이 오이
23. [JAVA] 프로그래머스 코딩테스트 연습 Level.1 - k번째수
https://programmers.co.kr/learn/challenges 코딩테스트 연습 기초부터 차근차근, 직접 코드를 작성해 보세요. programmers.co.kr 프로그래머스 코딩테스트 연습 Level.1 - k번째수 풀이 import java.util.*; class Solution { public int[] solution(int[] array, int[][] commands) { int[]answer = new int[commands.length]; int[] result; for (int n = 0; n < commands.length; n++) { int i = commands[n][0]; int j = commands[n][1]; int k = commands[n][2]; resul..
코딩테스트 - JAVA/프로그래머스 Programmers
2022. 5. 3. 09:45