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
- python zip_longest
- 릿코드 파이썬
- binary search
- 파이썬릿코드
- 파이썬 프로그래머스
- 알고리즘풀기
- 파이썬 알고리즘
- 릿코드 풀기
- 코틀린기초
- python sorted
- 파이썬 알고리즘 풀기
- leetcode풀기
- python Leetcode
- python 알고리즘
- 파이썬 릿코드
- 릿코드
- 파이썬알고리즘풀기
- python xor
- 알고리즘풀이
- leetcode 풀기
- 릿코드풀이
- LeetCode
- 파이썬릿코드풀기
- python priority queue
- python 릿코드
- leetcode풀이
- 잇츠디모
- 파이썬알고리즘
- 상가수익률계산기
- 릿코드풀기
Archives
- Today
- Total
소프트웨어에 대한 모든 것
LeetCode 풀이 - 2006. Count Number of Pairs With Absolute Difference K 본문
알고리즘/LeetCode
LeetCode 풀이 - 2006. Count Number of Pairs With Absolute Difference K
앤테바 2021. 10. 19. 08:23반응형
2006. Count Number of Pairs With Absolute Difference K
문제)
솔루션1)
- Brute-force
class Solution:
def countKDifference(self, nums: List[int], k: int) -> int:
count = 0
for i in range(len(nums)):
for j in range(i, len(nums)):
if i != j and abs(nums[i] - nums[j]) == k:
count += 1
return count
솔루션2)
- 조합 사용
class Solution:
def countKDifference(self, nums: List[int], k: int) -> int:
count = 0
for i, j in combinations(nums, 2):
if abs(i-j) == k:
count += 1
return count
솔루션3)
- dict를 이용한 O(n)
class Solution:
def countKDifference(self, nums: List[int], k: int) -> int:
seen = defaultdict(int)
count = 0
for num in nums:
count += seen[num - k] + seen[num + k]
seen[num] += 1
return count
반응형
'알고리즘 > LeetCode' 카테고리의 다른 글
LeetCode 풀이 - 1512. Number of Good Pairs (0) | 2021.10.21 |
---|---|
LeetCode 풀이 - 1773. Count Items Matching a Rule (0) | 2021.10.19 |
LeetCode 풀이 - 1769. Minimum Number of Operations to Move All Balls to Each Box (0) | 2021.10.19 |
LeetCode 풀이 - 1528. Shuffle String (0) | 2021.10.18 |
LeetCode 풀이 - 1828. Queries on Number of Points Inside a Circle (0) | 2021.10.16 |
Comments