- This event has passed.
Competitive Programming
August 31, 2022 @ 6:00 pm - 8:00 pm
Homeworks:
You are given an integer array nums. The unique elements of an array are the elements that appear exactly once in the array.
Return the sum of all the unique elements of nums.
Input: nums = [1,2,3,2]
Output: 4
Note: Solve this problem using Dictionary