일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- tcping
- mssql
- Database
- Oracle11g
- HATEOAS
- 스프링부트 #springboot #project #Intellij
- 스프링시큐리티
- sqldeveloper
- 환경변수
- SpringSecurity
- ojdbc
- postman
- RESTful
- springboot
- springboot #controller #jsp
- SpringInitializer
- IntelliJ
- Tomcat #SpringFramework
- Developer
- oracle
- development
- restapi
- Maven
- mysql
- undefined
- install
- apache
- Web
- 웹개발
- 스프링부트
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