Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 프로그래머스
- algorhtim
- Two Pointer
- 슬라이딩 윈도우
- python
- Jest
- 알고리즘
- InfluxDB
- Server monitoring
- typescript
- 코딩테스트 연습
- React
- 파이썬
- configfile
- Algorithm
- frontend
- 완전탐색
- pnpm
- 스택/큐
- algorighm
- telegraf
- Vite
- 점화식
- pymodbus
- modbus
- Stack
- queue
- javascript
- monorepo
- PCCP
Archives
- Today
- Total
목록점화식 (1)
DM Log
[연습문제] 멀리 뛰기 - Python / JavaScript
문제 링크 - https://school.programmers.co.kr/learn/courses/30/lessons/12914 프로그래머스SW개발자를 위한 평가, 교육, 채용까지 Total Solution을 제공하는 개발자 성장을 위한 베이스캠프programmers.co.kr [문제 간단 요약]1. 1칸 또는 2칸 이동 가능하며 특정 칸에 오는 경우의 수를 구하는 문제[문제 해결 방안]1. 특정 칸의 경우의 수는 특정 칸-1과 특정 칸-2의 올 수 있는 경우의 수의 합2. 특정칸-1에서 1칸 이동하여 특정칸으로 오는 경우3. 특정칸-2에서 2칸 이동하여 특정칸으로 오는 경우 [문제 해결 코드 - python]def solution(n): dp = [0] * (n + 1) answer = 0 ..
알고리즘/프로그래머스
2025. 2. 24. 21:20