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
- 분산
- apache kafka
- 이진탐색
- 도커
- 오블완
- KAFKA
- 하둡
- docker
- leetcode
- programmers
- heapq
- Apache Hadoop
- Apache Spark
- 코딩테스트
- 아파치 스파크
- 빅데이터
- String
- 아파치 카프카
- 티스토리챌린지
- 분산처리
- Data Engineering
- 프로그래머스
- 카프카
- 파이썬
- Python
- DP
- 우선순위큐
- 아파치 하둡
- 알고리즘
- 리트코드
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