leetcode

    [Leetcode][JS] 1630. Arithmetic Subarrays

    1630. Arithmetic Subarrays 문제 최소 두 개의 원소로 구성되어있는 경우, 연속적인 두개의 원소의 차이가 동일하면 arithmetic하다고 한다 s[i + 1] - s[i] == s[1] - s[0] 인 경우, artimetic하다 더보기 A sequence of numbers is called arithmetic if it consists of at least two elements, and the difference between every two consecutive elements is the same. More formally, a sequence s is arithmetic if and only if s[i+1] - s[i] == s[1] - s[0] for all vali..