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