()
| 24 | } |
| 25 | |
| 26 | fn main() { |
| 27 | let amount = 81u32; |
| 28 | let cashes = [1,5,10,20,50]; |
| 29 | let mut min_cashes: [u32; 82] = [0; 82]; |
| 30 | let cashe_num = dp_rec_mc(&cashes,amount,&mut min_cashes); |
| 31 | println!("Making refund for ¥{amount} need {cashe_num} cashes"); |
| 32 | } |
nothing calls this directly
no test coverage detected