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
- 빅데이터
- docker
- leetcode
- 분산처리
- Hadoop
- 딕셔너리
- 데이터 엔지니어링
- programmers
- 오블완
- 파이썬
- 알고리즘
- heapq
- Spark
- 하둡
- 리트코드
- 티스토리챌린지
- HDFS
- Data Engineering
- 아파치 스파크
- 스파크
- 분산
- Python
- Apache Hadoop
- 도커
- 이진탐색
- Apache Spark
- 프로그래머스
- 아파치 하둡
- 코딩테스트
- 우선순위큐
Archives
- Today
- Total
목록leetcode 2563 (1)
래원
[LeetCode] 2563. Count the Number of Fair Pairs - Python
문제 설명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..
알고리즘/LeetCode
2024. 11. 13. 15:46