返回介绍

solution / 1900-1999 / 1979.Find Greatest Common Divisor of Array / README

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

1979. 找出数组的最大公约数

English Version

题目描述

给你一个整数数组 nums ,返回数组中最大数和最小数的 最大公约数

两个数的 最大公约数 是能够被两个数整除的最大正整数。

 

示例 1:

输入:nums = [2,5,6,9,10]
输出:2
解释:
nums 中最小的数是 2
nums 中最大的数是 10
2 和 10 的最大公约数是 2

示例 2:

输入:nums = [7,5,6,8,3]
输出:1
解释:
nums 中最小的数是 3
nums 中最大的数是 8
3 和 8 的最大公约数是 1

示例 3:

输入:nums = [3,3]
输出:3
解释:
nums 中最小的数是 3
nums 中最大的数是 3
3 和 3 的最大公约数是 3

 

提示:

  • 2 <= nums.length <= 1000
  • 1 <= nums[i] <= 1000

解法

方法一:模拟

根据题意模拟即可,即先找出数组 nums 中的最大值和最小值,然后求最大值和最小值的最大公约数。

时间复杂度 $O(n)$,空间复杂度 $O(1)$。其中 $n$ 为数组 nums 的长度。

class Solution:
  def findGCD(self, nums: List[int]) -> int:
    return gcd(max(nums), min(nums))
class Solution {
  public int findGCD(int[] nums) {
    int a = 1, b = 1000;
    for (int x : nums) {
      a = Math.max(a, x);
      b = Math.min(b, x);
    }
    return gcd(a, b);
  }

  private int gcd(int a, int b) {
    return b == 0 ? a : gcd(b, a % b);
  }
}
class Solution {
public:
  int findGCD(vector<int>& nums) {
    int a = *max_element(nums.begin(), nums.end());
    int b = *min_element(nums.begin(), nums.end());
    return gcd(a, b);
  }
};
func findGCD(nums []int) int {
  a, b := slices.Max(nums), slices.Min(nums)
  return gcd(a, b)
}

func gcd(a, b int) int {
  if b == 0 {
    return a
  }
  return gcd(b, a%b)
}
function findGCD(nums: number[]): number {
  let a = 1;
  let b = 1000;
  for (const x of nums) {
    a = Math.max(a, x);
    b = Math.min(b, x);
  }
  return gcd(a, b);
}

function gcd(a: number, b: number): number {
  if (b == 0) {
    return a;
  }
  return gcd(b, a % b);
}

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

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

发布评论

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