일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 오블완
- Python
- DP
- 딕셔너리
- Apache Hadoop
- Data Engineering
- programmers
- 빅데이터
- 분산
- 하둡
- docker
- 알고리즘
- 아파치 스파크
- Spark
- 코딩테스트
- 분산처리
- 아파치 하둡
- 티스토리챌린지
- 프로그래머스
- leetcode
- 데이터 엔지니어링
- heapq
- Hadoop
- 스파크
- 파이썬
- 우선순위큐
- 도커
- Apache Spark
- 리트코드
- 이진탐색
- 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..