lc1630. 等差子数组
题目链接:1630. 等差子数组 - 力扣(LeetCode)
题解
暴力枚举,判断一个区间是否是等差数列可以优化,(arr_max - arr_mix)/arr_len 应该能整除且结果为公差,所以可以优化到 O(n)
参考代码
1 | class Solution: |
lc1630. 等差子数组
题目链接:1630. 等差子数组 - 力扣(LeetCode)
暴力枚举,判断一个区间是否是等差数列可以优化,(arr_max - arr_mix)/arr_len 应该能整除且结果为公差,所以可以优化到 O(n)
1 | class Solution: |
lc1630. 等差子数组