일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 프로그래머스
- Apache Hadoop
- programmers
- 코딩테스트
- 딕셔너리
- 분산
- 알고리즘
- 아파치 스파크
- Data Engineering
- Python
- heapq
- docker
- 데이터 엔지니어링
- Apache Spark
- 리트코드
- Hadoop
- 아파치 하둡
- Spark
- 오블완
- 티스토리챌린지
- 우선순위큐
- leetcode
- 하둡
- DP
- 스파크
- 파이썬
- 이진탐색
- 분산처리
- 도커
- 빅데이터
- Today
- Total
목록2024/12/31 (2)
래원
난이도: Medium문제 설명You are given an integer array coins representing coins of different denominations and an integer amount representing a total amount of money.Return the fewest number of coins that you need to make up that amount. If that amount of money cannot be made up by any combination of the coins, return -1.You may assume that you have an infinite number of each kind of coin. 문제 예제Example ..
난이도: Medium 문제 설명You have planned some train traveling one year in advance. The days of the year in which you will travel are given as an integer array days. Each day is an integer from 1 to 365.Train tickets are sold in three different ways:a 1-day pass is sold for costs[0] dollars,a 7-day pass is sold for costs[1] dollars, anda 30-day pass is sold for costs[2] dollars.The passes allow that man..