()
| 11 | } |
| 12 | |
| 13 | fn main() { |
| 14 | let costs = vec![1,6,3,1,2,5]; |
| 15 | let coins = 20; |
| 16 | println!("{:?}", max_ice_cream(costs, coins)); |
| 17 | println!("{:?}", max_ice_cream(vec![1,3,2,4,1], 7)); |
| 18 | } |
nothing calls this directly
no outgoing calls
no test coverage detected