▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/count-number-of-pairs-with-absolute-difference-k/ Count Number of Pairs With Absolute Difference K - LeetCode Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview. leetcode.com 정수 배열 nums와 정수 k가 주어진다. nums에서 (i,j) 형태로 조합했을 때, 절대값이 k인 경우의 수를 반환하는 문제. from itertool..