일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- hashmap
- exception
- dip
- Kotlin
- OAuth
- c
- java
- Spring
- 자료구조
- nGrinder
- 코딩 테스트
- thread
- Oidc
- Sharding
- 부하 테스트
- login
- 운영체제
- AOP
- Kafka
- 코드 트리
- pub.dev
- 코딩
- Redis
- flutter
- 코딩테스트
- 연습문제
- C언어
- kakao
- Scaffold
- 코드트리
- Today
- Total
목록코딩테스트 (6)
Nick Dev
문제 링크https://www.codetree.ai/trails/complete/curated-cards/challenge-max-movements-with-direction/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.*;import java.io.*;public clas..
문제 링크https://www.codetree.ai/missions/2/problems/strong-explosion?&utm_source=clipboard&utm_medium=text내 코드import java.util.*;import java.io.*;public class Main { // 폭탄 위치를 저장할 클래스 static class Point { int x; int y; Point(int x, int y) { this.x = x; this.y = y; } } // 2번 타입 폭탄용 dx, dy static int[] dxs = new int[] {1, 0, -1, 0}; ..

문제문제 링크https://www.codetree.ai/missions/2/problems/one-trial-of-2048-game?&utm_source=clipboard&utm_medium=text내 코드import java.util.*;import java.io.*;public class Main { public static void main(String[] args) throws IOException { // 여기에 코드를 작성해주세요. BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st; int[][] grid = new int[..

문제문제 링크https://www.codetree.ai/missions/2/problems/The-1D-bomb-game?&utm_source=clipboard&utm_medium=text내 코드import java.util.*;import java.io.*;public class Main { static int endOfArray; static int[] arr; static int n; static int m; public static void bomb() { int[] tmp = new int[n]; int tmpIdx = 0; // 옮겨 담을 배열의 인덱스 int arrIdx = 0; // 현재 배열의 인덱스 ..
01. 순차 자료구조와 관련된 것은? Ans : 1번 ① 디스크 조각 모으기 ② 재귀호출③ 포인터 ④ 백신 프로그램 02. 선형 리스트에 대한 설명으로 틀린 것은? Ans : 2번 ① 선형 리스트는 메모리에 연속된 공간을 사용한다.② 삽입 연산에 효율적이다.③ 배열을 사용해 구현하는 순차 자료구조이다.④ 선형 리스트의 전체 원소를 순서대로 액세스하는 속도가 빠르다. 03. 선형 리스트를 L[m][n]의 2차원 배열로 구현할 때, 선형 리스트에 저장할 수 있 는 원소의 최대 개수는? ..