일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Spring Boot
- Kafka
- JPA
- SQL
- MST
- MVC
- 쿼리
- Intellj
- 자료구조
- Spring Cloud Feign
- 디자인 패턴
- Jenkins
- retry
- 데이터베이스
- 백준
- db
- golang
- 자바
- aws
- 알고리즘
- 코딩
- 운영체제
- 페이징
- Spring
- 클라우드
- 오라클
- PL/SQL
- Spring Cloud
- feign
- DP
- Today
- Total
목록전체 글 (141)
justgo_developer
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263import java.util.*; public class Main { static int N; static int M; static int[] arr; static int[] temp; static boolean[] visit; public static void main(String[] args) { Scanner sc = new Scanner(System.in); N = sc.nextInt(); M = sc.nextInt(); arr = new int[9]; temp = new int[N]; v..
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354import java.util.*; public class Main { static int N; static int M; static int[] arr; static int[] temp; static boolean[] visit; public static void main(String[] args) { Scanner sc = new Scanner(System.in); N = sc.nextInt(); M = sc.nextInt(); arr = new int[9]; temp = new int[N]; visit = new boolean..