I want to calculate a vector's combination.
I am able to do it easily using itertools::Itertools:combinations
trait like this:
vec![1, 2, 3].iter().combinations(2).for_each(|x| {
println!("{:?}", x);
});
But I want to specify the combination lengths as well as counts of these lengths. As an example:
values = [0, 1, 2, 3, 4]
# 1 group with a length of 3 and 1 group with a length of 2
len_counts = { 3: 1, 2: 1 }
combinations = [
[{0, 1, 2}, {3, 4}]
[{0, 1, 3}, {2, 4}]
[{0, 1, 4}, {2, 3}]
[{0, 2, 3}, {1, 4}]
[{0, 2, 4}, {1, 3}]
[{0, 3, 4}, {1, 2}]
[{1, 2, 3}, {0, 4}]
[{1, 2, 4}, {0, 3}]
[{1, 3, 4}, {0, 2}]
[{2, 3, 4}, {0, 1}]
]
I want it to be lazy-loaded and as clean as possible. I tried to get this output for some time but couldn't succeed. Any help is appreciated.
Edit: The order of combinations and data structures used for representing the variables are not important.
After a bunch of thought, I sadly wasn't able to come up with a clean and easy solution.
Nonetheless, I came up with a solution :) although it's quite messy, I'm afraid :D