일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Dynamic Programming
- Python
- join
- softeer
- 소프티어
- Java
- LEVEL 2
- dfs
- 동적계획법
- select
- 티스토리챌린지
- level 3
- bfs
- 너비 우선 탐색
- 파이썬
- 자바스크립트
- 오블완
- Lv. 0
- group by
- SQL 고득점 KIT
- SQL
- programmers
- 깊이 우선 탐색
- Lv. 1
- DP
- C언어
- 프로그래머스
- Lv. 2
- javascript
- Lv. 3
- Today
- Total
목록알고리즘/풀었지만 다시 보기 (32)
몸과 마음이 건전한 SW 개발자
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/340211 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드function solution(points, routes) { let visited = new Map();; const isCrushed = (sr, sc, cnt) => { const locKey = `${sr},${sc},${cnt}`; if (visited.has(locKey)) { visited.set(locKey, v..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/258707 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드function solution(coin, cards) { const n = cards.length; const cardSum = n + 1; const myCards = cards.slice(0, n/3); const deck = cards.slice(n/3); const coinCards = []; // [1] 내 손에 있는 카드 중에서 확..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/340210 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드def isValid(number, notation): for n in number: if int(n) >= notation: return False return True def changeNotation(number, notation): newNumber = "" while number > 0: newNumber ..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/72415 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드from collections import dequedef solution(board, r, c): minLength = [10000] # 방향 탐색 dr = [-1, 1, 0, 0] dc = [0, 0, -1, 1] def isValid(nr, nc): return 0 bc: for nc in range(ac-1, ..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/133500?language=python3 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드import syssys.setrecursionlimit(10**6)def solution(n, lighthouse): adjL = [[] for _ in range(n+1)] dp = [0 for _ in range(n+1)] visited = [0 for _ in range(n+1)] def dfs(current, par..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/42893 프로그래머스코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.programmers.co.kr정답 코드def seperateString(string): tmp = "" stack = [] for s in string: if "a" ": balance -= 1 pageValues.append(value.split(" ")) else: value += p ..