일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- flutter
- Redis
- 연습문제
- 코딩테스트
- c
- exception
- Kotlin
- pub.dev
- 코드 트리
- Sharding
- dip
- Spring
- kakao
- Kafka
- C언어
- nGrinder
- 디프만
- 코딩 테스트
- java
- 자료구조
- 디프만16기
- AOP
- Scaffold
- OAuth
- 운영체제
- Oidc
- 부하 테스트
- 코딩
- depromeet
- 코드트리
- Today
- Total
목록코딩 테스트 (5)
Nick Dev
문제링크https://www.codetree.ai/trails/complete/curated-cards/challenge-yutnori-1d/description Code Tree | Learning to Code with ConfidenceA super-comprehensive, meticulously arranged Coding Learning Curriculum engineered by Algorithm Experts composed of former International Olympiad in Informatics (IOI) medalists.www.codetree.ai 내 풀이import java.util.*;public class Main { static int n; static ..
문제 링크[https://www.codetree.ai/trails/complete/curated-cards/test-calculations-with-alphabet/description]내 풀이import java.util.*;public class Main { static char[] input; static int size; static int max = Integer.MIN_VALUE; static Map map; static Set alph; static List list; // 알파벳에 숫자 매핑하기 static void recur(int idx) { if (idx == size) { int res = calcul..
문제 링크https://www.codetree.ai/missions/2/problems/beautiful-number?&utm_source=clipboard&utm_medium=text내 코드import java.util.*;public class Main { static int n; static int ans = 0; static ArrayList list; static boolean isBeautilful() { for (int i = 0; i (); makeNum(0); System.out.println(ans); }}설명재귀함수를 통해서 1~4 숫자로 만든 n자리 수를 만든다각 숫자에 대해서 아름다운지 판단한다makeNum()가능한 ..
문제문제 링크https://www.codetree.ai/missions/2/problems/best-cross-shape-bomb?&utm_source=clipboard&utm_medium=text내 코드import java.util.*;public class Main { static int n; static int arr[][]; static int copy[][]; static int[] dxs = new int[] {1, 0, -1, 0}; static int[] dys = new int[] {0, 1, 0, -1}; public static void copy() { for (int i = 0; i = 0; i--) { if (..

문제문제 링크https://www.codetree.ai/missions/2/problems/The-2D-wind-blows?&utm_source=clipboard&utm_medium=text내 코드import java.util.*;import java.io.*;public class Main { static int n; static int m; static int[][] grid; static int r1; static int c1; static int r2; static int c2; public static void main(String[] args) throws IOException { // 여기에 코드를 작성해주세요. Buffe..