일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- LEVEL 2
- 소프티어
- 자바스크립트
- Dynamic Programming
- Lv. 2
- join
- 프로그래머스
- javascript
- Lv. 3
- level 3
- Lv. 0
- C언어
- group by
- DP
- 파이썬
- Java
- 오블완
- 동적계획법
- Lv. 1
- SQL 고득점 KIT
- select
- programmers
- 티스토리챌린지
- 깊이 우선 탐색
- SQL
- 너비 우선 탐색
- Python
- dfs
- bfs
- softeer
- Today
- Total
목록분류 전체보기 (410)
몸과 마음이 건전한 SW 개발자
문제 링크 https://school.programmers.co.kr/tryouts/72050/challenges 정답 코드 from collections import deque def solution(places): answer = [] # 5 * 5 # 거리 2 이하는 안돼 # P 응시자 # O는 빈 테이블 # X는 파티션 dr = [-1, 1, 0, 0] dc = [0, 0, -1, 1] def isValid(nr, nc): return 0
문제 링크 https://school.programmers.co.kr/tryouts/72049/challenges 정답 코드 def solution(n): top = [[0 for _ in range(n)] for _ in range(n)] number = 1 cnt = n ifd = [0, 1, 2] direction = 0 startIndex = 0 endIndex = n # index 증가, 고정, 감소, 증가, 고정, 감소 while cnt: cnt -= 1 d = ifd[direction] if d == 0: for idx in range(startIndex, endIndex): top[idx][startIndex] = number number += 1 startIndex += 1 elif d ..
문제 링크 https://school.programmers.co.kr/tryouts/72048/challenges 정답 코드 def solution(rows, columns, queries): newMap = [[0 for _ in range(columns)] for _ in range(rows)] cnt = 1 for r in range(rows): for c in range(columns): newMap[r][c] = cnt cnt += 1 answer = [] for x1, y1, x2, y2 in queries: x1 -= 1 y1 -= 1 x2 -= 1 y2 -= 1 minV = 10001 nextV = newMap[x1][y1] # 상단 for ny in range(y1+1, y2+1): if..
문제 링크 https://school.programmers.co.kr/tryouts/72046/challenges 정답 코드 def solution(line): lenLine = len(line) def isValid(A, B, C, D): return A * D - B * C def uniqueFC(A, B, C, D, E, F, divide): x = (B * F - E * D) / divide y = (E * C - A * F) / divide return x, y stars = set() for i in range(lenLine-1): A, B, E = line[i] for j in range(i+1, lenLine): if i == j: continue C, D, F = line[j] divid..
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/59410 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드 SELECT ANIMAL_TYPE, IF(NAME IS NULL, "No name", NAME) AS NAME, SEX_UPON_INTAKE FROM ANIMAL_INS;
문제 링크 https://school.programmers.co.kr/learn/courses/30/lessons/131530 프로그래머스 코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요. programmers.co.kr 정답 코드 SELECT TRUNCATE(PRICE, -4) AS PRICE_GROUP, COUNT(*) AS PRODUCTS FROM PRODUCT GROUP BY PRICE_GROUP ORDER BY PRICE_GROUP; Key Point DATE_FORMAT 함수 문법 : TRUNCATE(number, decimal_places) number: 잘라내고자 하는 숫자입니다. dec..