리트코드 Curated SQL 70 중 Medium 1) case이용select stock_name, sum(case when operation = "BUY" then -price else price end ) as capital_gain_lossfrom Stocksgroup by stock_name 2) self join 이용with grouped as (select stock_name, operation, sum(price) as price from Stocks group by stock_name, operation order by stock_name, o..
프로그래머스 알고리즘 KIT - 스택/큐 1. 이중루프 시간복잡도 O(n^2) 성능: 메모리: 19.4 MB, 시간: 72.74 msfrom collections import dequedef solution(prices): prices = deque(prices) answer= [] while prices: item = prices.popleft() count = 0 if not prices: answer.append(0) break for i in prices : count += 1 if item > i: break an..
- Total
- Today
- Yesterday
- 영어회화
- opic
- 줄넘기
- ChatGPT
- 미라클모닝
- C언어
- 30분
- 운동
- 뉴스
- 아침운동
- 경제
- 티스토리챌린지
- 실기
- Python
- llm
- Ai
- 오블완
- 갓생
- 다이어트
- 습관
- 아침
- 스크랩
- 프로그래머스
- IH
- 빅데이터 분석기사
- 오픽
- SQL
- 고득점 Kit
- 루틴
- 기초
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |