일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Apache Kafka
- 여행
- HIVE
- 맛집
- 코엑스맛집
- 자바
- hadoop
- Kafka
- 백준
- bigdata engineer
- 알고리즘
- Trino
- Data Engineering
- 삼성역맛집
- pyspark
- Linux
- 코테
- 용인맛집
- Iceberg
- Spark
- 코딩
- 영어
- java
- 프로그래머스
- 개발
- Data Engineer
- BigData
- 코딩테스트
- apache iceberg
- bigdata engineering
- Today
- Total
목록자바 (23)
지구정복
-문제 https://school.programmers.co.kr/learn/courses/30/lessons/43165. 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr -자바 class Solution { public int solution(int[] numbers, int target) { int answer = 0; answer = dfs(numbers, target, numbers[0], 1) + dfs(numbers, target, -numbers[0], 1); return answer; } public int dfs(int[] numbers, ..
-자바 bfs package bfs_dfs; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.LinkedList; import java.util.Queue; import java.util.StringTokenizer; public class Virus1 { public static int[][] arr; public static boolean[] visit; public static int sum = 0; private static void bfs( int start ) { Queue q = new LinkedList(); q.add( start ); vis..
-문제 https://www.acmicpc.net/problem/16173 -자바(dfs) package bfs_dfs; import java.io.BufferedReader; import java.io.BufferedWriter; import java.io.IOException; import java.io.InputStreamReader; import java.io.OutputStreamWriter; import java.util.StringTokenizer; public class Jelly1 { private static BufferedWriter bw = new BufferedWriter( new OutputStreamWriter( System.out ) ); private static int d..