일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- postman
- Maven
- IntelliJ
- Tomcat #SpringFramework
- 스프링부트 #springboot #project #Intellij
- Developer
- development
- RESTful
- Oracle11g
- Database
- mysql
- Web
- 환경변수
- springboot
- install
- sqldeveloper
- ojdbc
- apache
- mssql
- restapi
- springboot #controller #jsp
- SpringInitializer
- 웹개발
- tcping
- undefined
- HATEOAS
- 스프링시큐리티
- 스프링부트
- SpringSecurity
- oracle
Archives
- Today
- Total
목록Algorithm/정렬 (1)
여백에 도장 찍기
[Level1/정렬/K번째 수]
https://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.kr import java.util.Arrays; class Solution { public int[] solution(int[] array, int[][] commands) { int[] answer = new int[commands.length]; for (int a=0; a 메서드를 통해 배열을 복사할 수 있다. - 배열 정렬 : Arrays.sort(); - ArrayList 정렬: Collections.sort();
Algorithm/정렬
2021. 8. 16. 13:05