LeetCode 1679. Max Number of K-Sum Pairs
Question
You are given an integer array nums
and an integer k
.
In one operation, you can pick two numbers from the array whose sum equals k
and remove them from the array.
Return the maximum number of operations you can perform on the array.
Example 1:
1 | Input: nums = [1,2,3,4], k = 5 |
Example 2:
1 | Input: nums = [3,1,3,4,3], k = 6 |
Constraints:
1 <= nums.length <= 105
1 <= nums[i] <= 109
1 <= k <= 109
Source: https://leetcode.com/problems/max-number-of-k-sum-pairs/
Solution
Similar to the hashmap solution of LeetCode 1. Two Sum.
1 | public int maxOperations(int[] nums, int k) { |
LeetCode 1679. Max Number of K-Sum Pairs
http://yenotes.org/2022/03/10/LeetCode-1679-Max-Number-of-K-Sum-Pairs/