返回介绍

solution / 1700-1799 / 1748.Sum of Unique Elements / README_EN

发布于 2024-06-17 01:03:15 字数 5387 浏览 0 评论 0 收藏 0

1748. Sum of Unique Elements

中文文档

Description

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.

 

Example 1:

Input: nums = [1,2,3,2]
Output: 4
Explanation: The unique elements are [1,3], and the sum is 4.

Example 2:

Input: nums = [1,1,1,1,1]
Output: 0
Explanation: There are no unique elements, and the sum is 0.

Example 3:

Input: nums = [1,2,3,4,5]
Output: 15
Explanation: The unique elements are [1,2,3,4,5], and the sum is 15.

 

Constraints:

  • 1 <= nums.length <= 100
  • 1 <= nums[i] <= 100

Solutions

Solution 1

class Solution:
  def sumOfUnique(self, nums: List[int]) -> int:
    cnt = Counter(nums)
    return sum(x for x, v in cnt.items() if v == 1)
class Solution {
  public int sumOfUnique(int[] nums) {
    int[] cnt = new int[101];
    for (int x : nums) {
      ++cnt[x];
    }
    int ans = 0;
    for (int x = 0; x < 101; ++x) {
      if (cnt[x] == 1) {
        ans += x;
      }
    }
    return ans;
  }
}
class Solution {
public:
  int sumOfUnique(vector<int>& nums) {
    int cnt[101]{};
    for (int& x : nums) {
      ++cnt[x];
    }
    int ans = 0;
    for (int x = 0; x < 101; ++x) {
      if (cnt[x] == 1) {
        ans += x;
      }
    }
    return ans;
  }
};
func sumOfUnique(nums []int) (ans int) {
  cnt := [101]int{}
  for _, x := range nums {
    cnt[x]++
  }
  for x := 0; x < 101; x++ {
    if cnt[x] == 1 {
      ans += x
    }
  }
  return
}
function sumOfUnique(nums: number[]): number {
  const cnt = new Array(101).fill(0);
  for (const x of nums) {
    ++cnt[x];
  }
  let ans = 0;
  for (let x = 0; x < 101; ++x) {
    if (cnt[x] == 1) {
      ans += x;
    }
  }
  return ans;
}
impl Solution {
  pub fn sum_of_unique(nums: Vec<i32>) -> i32 {
    let mut cnt = [0; 101];
    for x in nums {
      cnt[x as usize] += 1;
    }
    let mut ans = 0;
    for x in 1..101 {
      if cnt[x] == 1 {
        ans += x;
      }
    }
    ans as i32
  }
}
class Solution {
  /**
   * @param Integer[] $nums
   * @return Integer
   */
  function sumOfUnique($nums) {
    $sum = 0;
    for ($i = 0; $i < count($nums); $i++) {
      $hashtable[$nums[$i]] += 1;
      if ($hashtable[$nums[$i]] == 1) {
        $sum += $nums[$i];
      }
      if ($hashtable[$nums[$i]] == 2) {
        $sum -= $nums[$i];
      }
    }
    return $sum;
  }
}

Solution 2

class Solution {
  public int sumOfUnique(int[] nums) {
    int ans = 0;
    int[] cnt = new int[101];
    for (int x : nums) {
      if (++cnt[x] == 1) {
        ans += x;
      } else if (cnt[x] == 2) {
        ans -= x;
      }
    }
    return ans;
  }
}
class Solution {
public:
  int sumOfUnique(vector<int>& nums) {
    int ans = 0;
    int cnt[101]{};
    for (int& x : nums) {
      if (++cnt[x] == 1) {
        ans += x;
      } else if (cnt[x] == 2) {
        ans -= x;
      }
    }
    return ans;
  }
};
func sumOfUnique(nums []int) (ans int) {
  cnt := [101]int{}
  for _, x := range nums {
    cnt[x]++
    if cnt[x] == 1 {
      ans += x
    } else if cnt[x] == 2 {
      ans -= x
    }
  }
  return
}
function sumOfUnique(nums: number[]): number {
  let ans = 0;
  const cnt = new Array(101).fill(0);
  for (const x of nums) {
    if (++cnt[x] === 1) {
      ans += x;
    } else if (cnt[x] === 2) {
      ans -= x;
    }
  }
  return ans;
}
use std::collections::HashMap;

impl Solution {
  pub fn sum_of_unique(nums: Vec<i32>) -> i32 {
    let mut res = 0;
    let mut map = HashMap::new();
    for num in nums {
      if map.contains_key(&num) {
        if *map.get(&num).unwrap() {
          map.insert(num, false);
          res -= num;
        }
      } else {
        map.insert(num, true);
        res += num;
      }
    }
    res
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文