Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit199a76c

Browse files
authored
Create Count Subarrays of Length Three With a Condition.java
1 parent8738cee commit199a76c

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
classSolution {
2+
publicintcountSubarrays(int[]nums) {
3+
intcount =0;
4+
for (inti =0;i <nums.length -2;i++) {
5+
if (2 * (nums[i] +nums[i +2]) ==nums[i +1]) {
6+
count++;
7+
}
8+
}
9+
returncount;
10+
}
11+
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp