1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-19 17:56:55 +02:00

java: add “2706. Buy Two Chocolates”

Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
Matej Focko 2023-12-29 13:40:49 +01:00
parent 10369a5031
commit ab78965115
Signed by: mfocko
GPG key ID: 7C47D46246790496

View file

@ -0,0 +1,21 @@
class Solution {
public int buyChoco(int[] prices, int money) {
int[] mins = new int[2];
mins[0] = mins[1] = Integer.MAX_VALUE;
for (int p : prices) {
if (p < mins[0]) {
mins[1] = mins[0];
mins[0] = p;
} else if (p < mins[1]) {
mins[1] = p;
}
}
int leftover = money - mins[0] - mins[1];
if (leftover < 0) {
return money;
}
return leftover;
}
}