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 |
Tags
- 스타일리쉬들여쓰기
- SWEA
- startswith
- 완주하지못한선수
- 단어변환
- SSAFY
- Java
- K번째수
- 11562
- 타겟넘버
- 객체정렬
- 명령어
- 진수 int형으로
- 7699
- 특정인덱스바꾸기
- 그래프adt
- toCharArray()
- 프로젝트
- 알고리즘
- git
- 10580번
- 2579
- 프로그래머스
- 타도
- django
- 전화번호목록
- 시작
- 백양로브레이크
- 백준
- 자바
Archives
- Today
- Total
합리적 낙관주의자
Programmers [정렬] K번째수
programmers.co.kr/learn/courses/30/lessons/42748 코딩테스트 연습 - K번째수[1, 5, 2, 6, 3, 7, 4] [[2, 5, 3], [4, 4, 1], [1, 7, 3]] [5, 6, 3]programmers.co.kr1. 내가 푼 코드이중 for문 사용해서 주어진 범위를 list에 집어넣은 다음, Collections sort 사용해서 정렬 뒤 K번째 값 구하기 import java.util.Collections;import java.util.LinkedList;class Solution { public int[] solution(int[] array, int[][] commands) { int [] answer = new int [comma..
Computer Thinking 🌟/Algorithm 📝
2020. 10. 23. 18:47