Skip to content

Commit a6f676b

Browse files
authored
Added solution for 2706
1 parent b171634 commit a6f676b

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

02706. Buy Two Chocolates.rs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
impl Solution {
2+
// Maintain 2 variables: lowest and second_lowest keeping track of the 2 lowest prices. After looping through prices, if sum of both lowest is not higher than money that we have, return the money left after subtracting both lowest from money. Else return money.
3+
pub fn buy_choco(prices: Vec<i32>, money: i32) -> i32 {
4+
let mut lowest = i32::MAX;
5+
let mut second_lowest = i32::MAX;
6+
7+
for price in prices {
8+
if price < lowest {
9+
second_lowest = lowest;
10+
lowest = price;
11+
} else if price < second_lowest {
12+
second_lowest = price;
13+
}
14+
}
15+
16+
if (lowest + second_lowest) <= money {
17+
return money - (lowest + second_lowest)
18+
} else {
19+
return money;
20+
}
21+
}
22+
}

0 commit comments

Comments
 (0)