1
0
Fork 0
mirror of https://gitlab.com/mfocko/LeetCode.git synced 2024-09-16 16:36:56 +02:00
LeetCode/java/buy-two-chocolates.java
Matej Focko f0cdb67ac1
chore(java): format
Signed-off-by: Matej Focko <mfocko@redhat.com>
2024-03-02 21:01:53 +01:00

21 lines
430 B
Java

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;
}
}