![JAR search and dependency download from the Maven repository](/logo.png)
g0401_0500.s0413_arithmetic_slices.Solution Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0401_0500.s0413_arithmetic_slices;
// #Medium #Array #Dynamic_Programming
public class Solution {
public int numberOfArithmeticSlices(int[] nums) {
int sum = 0;
int curr = 0;
for (int i = 2; i < nums.length; i++) {
if (nums[i] - nums[i - 1] == nums[i - 1] - nums[i - 2]) {
curr++;
sum += curr;
} else {
curr = 0;
}
}
return sum;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy