총 10분 중 11분
2001
시즌 2개, 그리고 영화
시즌 2:
5화
“아일랜드”
출연: 이나영, 김민준, 김민정, 현빈
장르: 애초에 역경을 딛고 이룩하는 숭고한 사랑이란 없다. 그 역경 자체가 사랑이다.
프로그램 특징: 그 곳에서 살아남는 사랑이 어떤 모습으로 걸어오는지 기다려 보고 싶다.
장르: 애초에 역경을 딛고 이룩하는 숭고한 사랑이란 없다. 그 역경 자체가 사랑이다.
프로그램 특징: 그 곳에서 살아남는 사랑이 어떤 모습으로 걸어오는지 기다려 보고 싶다.
회차
-
[SQL/Oracle] 공백 전까지 문자 추출0308분https://school.programmers.co.kr/learn/courses/30/lessons/59040 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr[GROUP BY] 고양이와 개는 몇 마리 있을까SELECT animal_type, count(animal_id)from animal_ins group by animal_typehaving animal_type in ('Cat', 'Dog')order by animal_type https://school.programmers.co.kr/learn/courses/30/lessons/131533?language=oracle 프로그래머스SW개발자를 위한 평가..
-
[SQL:Oracle] 대여 횟수가 많은 자동차들의 월별 대여 횟수 구하기0125분https://school.programmers.co.kr/learn/courses/30/lessons/151139?language=oracle 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 1. 날짜 변환 Extract(month from), to_date2. 범위 설정 후 집계 계산 between, ~ 3. 집계값에 조건 등록 group by, having4. 서브 쿼리 in ( ) SELECT EXTRACT(MONTH FROM START_DATE) AS MONTH, CAR_ID, COUNT(*) AS RECORDSFROM CAR_RENTAL_COMPANY_RENTAL_HISTO..
-
Cloud LEVEL 1 baby bgp0111분BGP는 Border Gateway Protocol로 라우팅 프로토콜을 의미한다. 라우팅 프로토콜은 크게 IGP, EGP 로 Interior하고 Exterior 두 개로 분류할 수 있는데 AS 간 라우팅을 처리하는게 BGP다. 즉, 인터넷 백본의 핵심 라우팅 프로토콜이다.AS(Autonomus System) 하나의 관리 주체가 운영하는 네트워크 집합(KT, SKT 등)docker-compose.yml 을 보면router02: ports: - "22:22" # ← 호스트의 22번 포트(SSH)를 router02의 22번으로 매핑ssh -p 13641 root@host8.dreamhack.games 로 접속하면호스트의 22번을 13641로 자동 포워딩router01.sh을 보면while true..
-
Security threat analysis and treatment strategy for ORAN1220분C. T. Shen et al., "Security Threat Analysis and Treatment Strategy for ORAN," 2022 24th International Conference on Advanced Communication Technology (ICACT), PyeongChang Kwangwoon_Do, Korea, Republic of, 2022, pp. 417-422, doi: 10.23919/ICACT53585.2022.9728862.https://ieeexplore.ieee.org/document/9728862/authors#authors Security Threat Analysis and Treatment Strategy for ORANOwing to the rapid..
-
자바 등굣길 DP1219분https://school.programmers.co.kr/learn/courses/30/lessons/42898?language=java 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr 초등학교 때 맨 첫 행, 열에 1111 써놓고 대각선끼리 더한 값이 맞닿아있는 우측, 아래 칸까지 가는 최소 거리의 개수다. 이것을 자바로 푸는 문제다. 1. 웅덩이 위치를 행렬로 정리한다. dp에 -1로 표현해도 되고, 나는 boolean으로 했다. 2. 현재 위치인 dp[1][1]= 1로 정의한다.3. dp[i][j] = dp[i][j-1] + dp[i-1][j] 을 적용한다. 이때, 오버플로 방지를 위해 문제 조건에 명시..
-
[Oracle] 오라클 시간 처리 문법 정리1217분입양 시각 구하기(2) Lv 4 프로그래머스SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr DB에 없는 값을 시간은 만들어서 반환해야 함 -> Recursive CTE or CONNECT BY LEVEL 시간 추출: mysql은 hour()로 할 수 있지만 오라클은 형 명시해줘야함Mysql 버전WITH RECURSIVE TIME_MAP AS ( SELECT 0 AS hour UNION ALL SELECT hour + 1 FROM TIME_MAP WHERE hour 오라클 버전recursive CTE -> Connect by level 라는 계층형 쿼리로 변환해서 사용한다.Connect by는 ~ 조건이 될..
-
프림스트라, 프림과 다익스트라 이해하기1211분프림은 MST 최소비용 신장 트리를 만드는 알고리즘이고, 다익스트라는 최단경로를 만드는 알고리즘이다.Minimum Spanning Tree는 모든 정점이 연결되어 있고 가중치 합이 최소가 되는 트리를 말한다.그래프는 모든 정점이 연결되어 사이클이 생겨도 되는데, 이 중에서 acylic하면 트리라고 말한다.둘 다 PQ를 이용해 구현하고, 가중치의 최소를 뽑는 공통점 때문에 코딩테스트를 하다가 프림스트라를 구현하는 일이 적지 않다.결론을 말하면, PQ에 넣는 값이 다르다. 프림은 가중치가 담긴 노드(a -> b)를 모두 PQ에 넣어놓고 가장 작은 가중치를 뽑는다. 다익스트라는 현재까지 진행된 (다음 노드까지 이동한다고 가정했을 때의) 가중치의 합이 가장 작은 값을 PQ에서 뽑는다. Greedy프림과 다익스트.. -
1334. Find the City With the Smallest Number of Neighbors at a Threshold Distance1211분Find the City With the Smallest Number of Neighbors at a Threshold Distance - LeetCodeimport java.util.*;class Solution { public int findTheCity(int n, int[][] edges, int distanceThreshold) { int e = edges.length; int[][] dist_dp = new int[n][n]; // 초기화 for (int i = 0; i 초기화할때 Integer.MAX_VALUE 오버플로우나서 오류 → 10001로 수정
-
프로그래머스 완전탐색 전력망 둘로 나누기1211분import java.util.*;class Solution { public int solution(int n, int[][] wires) { int answer = Integer.MAX_VALUE; List[] adj = new ArrayList[n+1]; for(int i=0; i(); } for(int i=0; i[] list){ v[node] = true; // if(list[node].size()==0) return 0; int count = 1; for(int i: list[node]){ if(!v[i..
Algorithm/프로그래머스
[SQL/Oracle] 공백 전까지 문자 추출
728x90
반응형
https://school.programmers.co.kr/learn/courses/30/lessons/59040
프로그래머스
SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프
programmers.co.kr
[GROUP BY] 고양이와 개는 몇 마리 있을까
SELECT animal_type, count(animal_id)
from animal_ins
group by animal_type
having animal_type in ('Cat', 'Dog')
order by animal_type
https://school.programmers.co.kr/learn/courses/30/lessons/131533?language=oracle
프로그래머스
SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프
programmers.co.kr
SELECT p.product_code as PRODUCT_CODE,
(p.price * sum(o.sales_amount)) as SALES
from product p
join offline_sale o on p.product_id = o.product_id
group by p.price, p.product_code
order by SALES desc, p.product_code
- 오라클에서는 행을 압축할 때 single value 를 보장하므로, SELECT, HAVING, ORDER BY 에 포함된 컬럼이 GROUP BY에 선언되지 않거나 집계 함수(SUM, MAX, MIN)에 포함되지 않으면 오류를 발생시킨다.
https://school.programmers.co.kr/learn/courses/30/lessons/131120
프로그래머스
SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프
programmers.co.kr
- SELECT 3월에 태어난 여성 회원목록 출력
SELECT member_id, member_name, gender as GENDER,
to_char(date_of_birth, 'YYYY-MM-DD') as DATE_OF_BIRTH
from member_profile
where gender = 'W'
and to_number(to_char(date_of_birth, 'MM')) = 03
and tlno is not null
order by member_id
https://school.programmers.co.kr/learn/courses/30/lessons/59409?language=oracle
프로그래머스
SW개발자를 위한 평가, 교육의 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프
programmers.co.kr
- String, Date 중성화 여부 파악하기
SELECT animal_id, name,
(case
when substr(sex_upon_intake, 0, instr(sex_upon_intake, ' ')-1) in ('Neutered' , 'Spayed' ) then 'O'
else 'X'
end) as 중성화
from animal_ins
order by animal_id
- SUBSTR @return char, INSTR @return index
- INSTR(STR, ' ') 공백 위치이므로 -1 해야 추출값 비교에서 단어만으로 비교 가능
728x90
'Algorithm > 프로그래머스' 카테고리의 다른 글
| [SQL:Oracle] 대여 횟수가 많은 자동차들의 월별 대여 횟수 구하기 (0) | 2026.01.25 |
|---|---|
| 자바 등굣길 DP (1) | 2025.12.19 |
| [Oracle] 오라클 시간 처리 문법 정리 (0) | 2025.12.17 |
| [Java][프로그래머스] 신고 결과 받기 (0) | 2025.05.30 |
| [프로그래머스][dp] 땅따먹기 (2) | 2024.06.26 |
2026:03:08
Algorithm/프로그래머스
[SQL/Oracle] 공백 전까지 문자 추출