鱼C论坛

 找回密码
 立即注册
查看: 1811|回复: 0

[技术交流] 【朱迪的LeetCode刷题笔记】1502. Can Make Arithmetic Progression From Sequence

[复制链接]
发表于 2023-6-6 13:32:28 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
A sequence of numbers is called an arithmetic progression if the difference between any two consecutive elements is the same.

Given an array of numbers arr, return true if the array can be rearranged to form an arithmetic progression. Otherwise, return false.

Example 1:
Input: arr = [3,5,1]
Output: true
Explanation: We can reorder the elements as [1,3,5] or [5,3,1] with differences 2 and -2 respectively, between each consecutive elements.

Example 2:
Input: arr = [1,2,4]
Output: false
Explanation: There is no way to reorder the elements to obtain an arithmetic progression.


Constraints:
2 <= arr.length <= 1000
-106 <= arr[i] <= 106

Judy
Python merge sort
class Solution(object):
    def canMakeArithmeticProgression(self, arr):
        """
        :type arr: List[int]
        :rtype: bool
        """
        
        def mergesort(arr):
            m = len(arr) // 2
            if m == 0:
                return arr
            return merge(mergesort(arr[:m]), mergesort(arr[m:]))
        
        def merge(a1, a2):
            l1 = len(a1)
            l2 = len(a2)
            i1 = 0
            i2 = 0
            rlst = []
            while i1 < l1 and i2 < l2:
                if a1[i1] < a2[i2]:
                    rlst.append(a1[i1])
                    i1 += 1
                else:
                    rlst.append(a2[i2])
                    i2 += 1
            rlst.extend(a1[i1:])
            rlst.extend(a2[i2:])
            return rlst

        l = len(arr)
        if l <= 2:
            return True
        lst = mergesort(arr)
        diff = lst[1] - lst[0]
        for i in range(2, l):
            if lst[i] - lst[i-1] != diff:
                return False
        return True
Python built_in function sort
class Solution(object):
    def canMakeArithmeticProgression(self, arr):
        """
        :type arr: List[int]
        :rtype: bool
        """

        arr.sort()
        diff = arr[1] - arr[0]
        length = len(arr)
        for i in range(2, length):
            if arr[i] - arr[i-1] != diff:
                return False
        return True

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-22 09:26

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表