(k: i32, n: i32)
| 15 | } |
| 16 | |
| 17 | pub fn combination_sum3(k: i32, n: i32) -> Vec<Vec<i32>> { |
| 18 | let mut path = vec![]; |
| 19 | let mut ret = vec![]; |
| 20 | Self::backtrace(9, k as usize, 1, &mut path, &mut ret, n); |
| 21 | ret |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | fn main() { |
nothing calls this directly
no outgoing calls
no test coverage detected