일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 아파치 스파크
- 분산처리
- 하둡
- 딕셔너리
- 오블완
- 아파치 하둡
- 분산
- leetcode
- 프로그래머스
- HDFS
- 도커
- 알고리즘
- Python
- 데이터 엔지니어링
- 우선순위큐
- Hadoop
- Spark
- 파이썬
- programmers
- 티스토리챌린지
- 코딩테스트
- 리트코드
- 빅데이터
- Apache Hadoop
- heapq
- docker
- Apache Spark
- 이진탐색
- 스파크
- Data Engineering
- Today
- Total
목록알고리즘 (39)
래원
문제 설명Given a 0-indexed integer array nums of size n and two integers lower and upper, return the number of fair pairs.A pair (i, j) is fair if:0 , andlower 문제 예제Example 1:Input: nums = [0,1,7,4,4,5], lower = 3, upper = 6Output: 6Explanation: There are 6 fair pairs: (0,3), (0,4), (0,5), (1,3), (1,4), and (1,5). Example 2:Input: nums = [1,7,9,2,5], lower = 11, upper = 11Output: 1Explanation: Ther..
문제 설명You are given a 2D integer array items where items[i] = [$price_i$, $beauty_i$] denotes the price and beauty of an item respectively. You are also given a 0-indexed integer array queries. For each queries[j], you want to determine the maximum beauty of an item whose price is less than or equal to queries[j]. If no such item exists, then the answer to this query is 0. Return an array answer ..
문제 설명You are given a 0-indexed integer array nums of length n.You can perform the following operation as many times as you want:Pick an index i that you haven’t picked before, and pick a prime p strictly less than nums[i], then subtract p from nums[i].Return true if you can make nums a strictly increasing array using the above operation and false otherwise.A strictly increasing array is an array..