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

Commit545e065

Browse files
authored
Add Kotlin 121-Best-Time-to-Buy-and-Sell-Stocks
1 parenta6650f1 commit545e065

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+
funmaxProfit(prices:IntArray):Int {
3+
var buy= prices[0]
4+
var maxDiff=0
5+
for (iin1 until prices.size) {
6+
buy= buy.coerceAtMost(prices[i])
7+
maxDiff= maxDiff.coerceAtLeast(prices[i]- buy)
8+
}
9+
return maxDiff
10+
}
11+
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp