일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 너비 우선 탐색
- javascript
- group by
- Lv. 0
- Lv. 1
- 프로그래머스
- LEVEL 2
- Lv. 3
- level 3
- softeer
- SQL 고득점 KIT
- bfs
- Dynamic Programming
- dfs
- DP
- C언어
- Python
- 자바스크립트
- 티스토리챌린지
- 깊이 우선 탐색
- programmers
- join
- Lv. 2
- 파이썬
- Java
- select
- 오블완
- SQL
- 동적계획법
- 소프티어
- Today
- Total
목록2024/11 (29)
몸과 마음이 건전한 SW 개발자
문제 링크https://school.programmers.co.kr/learn/courses/30/lessons/152996 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr정답 코드function solution(weights) { const map = new Map(); for (const w of weights) { if (map.has(w)) { map.set(w, map.get(w)+1); } else { map.set(w, 1); } } const answer = Array.from(map.keys..
문제 링크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..