▼ 문제 바로가기 (링크) ▼ https://leetcode.com/problems/number-of-good-pairs/ Number of Good Pairs - 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 주어진 정수 리스트에서 2개씩 뽑아서 만들 수 있는 조합 중, 각 튜플 안의 수 2개를 더한 값이 같은 것 끼리 모았을 때 그 짝의 수가 가장 많은 조합을 찾고 정수로 반환하는 문제. 먼저 조합과 순열에 대한 개념을 한 번 더 확인했다. 조합 : n개에서..