일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Python
- DP
- Java
- softeer
- join
- 동적계획법
- programmers
- C언어
- LEVEL 2
- javascript
- select
- Lv. 2
- Lv. 1
- 자바스크립트
- 깊이 우선 탐색
- bfs
- SQL 고득점 KIT
- group by
- 오블완
- Lv. 0
- SQL
- Lv. 3
- 프로그래머스
- 티스토리챌린지
- 너비 우선 탐색
- 파이썬
- Dynamic Programming
- level 3
- dfs
- 소프티어
- Today
- Total
목록프로그래머스 (315)
몸과 마음이 건전한 SW 개발자
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/42626 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드import heapqdef solution(scoville, K): answer = 0 heap = [] for s in scoville: heapq.heappush(heap, s) while heap and heap[0] 풀이 방법heap에 scoville을 전부 넣는다.heapq.heapify(scoville)로 scoville을 heap..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/42885?language=javascript 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드function solution(people, limit) { let cnt = 0; const lenP = people.length; people.sort((a, b) => b - a); let [left, right] = [0, lenP-1]; while (left 풀이 방법people을 역정렬한다.투포인터를 이용해서 ..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/49993 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드def solution(skill, skill_trees): answer = 0 lenSK = len(skill) visited = [0 for _ in range(26)] for s in skill: visited[ord(s)-65] = 1 def isValid(st): idx = 0 for s in st: ..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/49994?language=javascript 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드function solution(dirs) { const visited = {}; let [sr, sc] = [0, 0]; const isValid = (r, c, dr, dc) => { const [nr, nc] = [r+dr, c+dc]; return -5 풀이 방법시작 지점 0, 0을 만든다.범위..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/60058 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드answer = ""def solution(p): global answer def isValid(uvp): stack = [] lenUVP = len(uvp) for i in range(lenUVP): cv = uvp[i] if cv == "(": stack.append(..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/62048 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드function solution(w, h) { const gcd = (n1, n2) => { [n1, n2] = [Math.max(n1, n2), Math.min(n1, n2)]; while (n2) { [n1, n2] = [n2, n1%n2]; }; return n1; }; const..