일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- DP
- SQL 고득점 KIT
- Python
- level 3
- Lv. 1
- LEVEL 2
- 동적계획법
- programmers
- select
- 프로그래머스
- Lv. 3
- 티스토리챌린지
- join
- softeer
- SQL
- 자바스크립트
- Lv. 2
- C언어
- 깊이 우선 탐색
- Java
- 소프티어
- group by
- javascript
- 너비 우선 탐색
- 오블완
- Lv. 0
- bfs
- 파이썬
- Dynamic Programming
- dfs
- Today
- Total
목록분류 전체보기 (410)
몸과 마음이 건전한 SW 개발자
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/152996 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr정답 코드import java.util.*;class Solution { public Map Counter(int[] lst) { Map dict = new HashMap(); for (int n: lst) { if (dict.containsKey(n)){ dict.put(n, dict.get(n) + 1); } else { ..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/154539?language=javascript 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr정답 코드function solution(numbers) { const n = numbers.length; const answer = Array.from({length: n}, () => -1); const stack = []; for (let i = 0; i = numbers[i]) { break; } else { ..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/181186 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr정답 코드function solution(n) { const MOD = 1_000_000_007; const dp = [0, 1, 3, 10, 23, 62, 170]; if (n 풀이 방법https://ampersandor.tistory.com/21 [프로그래머스] 아방가르드 타일링 (파이썬)0. 문제 설명 문제는 간단하게 말해서, 왼쪽 도형 세개를 이용하여 높이가 3이고 넓이가 n 인 사각형을 빈틈없이 채울 수 있는 ..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/131702 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr정답 코드function solution(clockHands) { let answer = Infinity; const n = clockHands.length; const isValid = (nr, nc) => 0 { for (let d = 0; d { if (vCnt >= answer) { return; } if (s === n) { ..
▶▷ 서론◁◀ES2021은 새로운 특징이 많이 없지만 promise라는 조금 어려운 개념이 등장한다.그럴 때는 이 링크를 타고 들어가서 promise 사용 이유를 보면 된다.https://sound-programming.tistory.com/335 [CS 지식 - 프론트엔드] 비동기와 동기오늘 면접 보는데 가장 기본적인 동기와 비동기에 대해서 설명하지 못했다. 심지어 반대로 설명함;; 비동기를 순차적으로 사용한다고 했는데... 내가 프로젝트 때 사용한 기술과 용어에 대해서sound-programming.tistory.com▶▷ 목차 ◁◀(Promise) any(String) replaceAllNumeric Separators (_)▶▷ 1. (Promise) any ◁◀Promise.any()Promis..
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/214289 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr정답 코드function solution(temperature, t1, t2, a, b, onboard) { // 계산을 편리하게 하기 위해서 -10 Array(51).fill(Infinity)); dp[0][t] = 0; const isValid = (i, temp) => !onboard[i] || (t1 t ? ht-1 : ht; if (isValid(i+1, te..