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

Commit3bd69e7

Browse files
authored
Merge pull requestneetcode-gh#1447 from daredev127/104-Maximum-Depth-of-Binary-Tree
Created 1299-Replace-Elements-With-Greatest-Element-On-Right-Side.cs
2 parentsebcd7a4 +79805fd commit3bd69e7

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+
publicclassSolution{
2+
publicint[]ReplaceElements(int[]arr){
3+
intmax=-1;
4+
for(inti=arr.Length-1;i>=0;i--){
5+
intnewMax=Math.Max(arr[i],max);
6+
arr[i]=max;
7+
max=newMax;
8+
}
9+
returnarr;
10+
}
11+
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp