2022-03-27 20:45:09 +08:00
< p > You are given an integer array < code > nums< / code > . The unique elements of an array are the elements that appear < strong > exactly once< / strong > in the array.< / p >
< p > Return < em > the < strong > sum< / strong > of all the unique elements of < / em > < code > nums< / code > .< / p >
< p > < / p >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 1:< / strong > < / p >
2022-03-27 20:45:09 +08:00
< pre >
< strong > Input:< / strong > nums = [1,2,3,2]
< strong > Output:< / strong > 4
< strong > Explanation:< / strong > The unique elements are [1,3], and the sum is 4.
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 2:< / strong > < / p >
2022-03-27 20:45:09 +08:00
< pre >
< strong > Input:< / strong > nums = [1,1,1,1,1]
< strong > Output:< / strong > 0
< strong > Explanation:< / strong > There are no unique elements, and the sum is 0.
< / pre >
2023-12-09 18:42:21 +08:00
< p > < strong class = "example" > Example 3:< / strong > < / p >
2022-03-27 20:45:09 +08:00
< pre >
< strong > Input:< / strong > nums = [1,2,3,4,5]
< strong > Output:< / strong > 15
< strong > Explanation:< / strong > The unique elements are [1,2,3,4,5], and the sum is 15.
< / pre >
< p > < / p >
< p > < strong > Constraints:< / strong > < / p >
< ul >
< li > < code > 1 < = nums.length < = 100< / code > < / li >
< li > < code > 1 < = nums[i] < = 100< / code > < / li >
< / ul >