P26 (**) Generate the combinations of K distinct objects chosen from the N elements of a list
| 203 | |
| 204 | // P26 (**) Generate the combinations of K distinct objects chosen from the N elements of a list |
| 205 | void problem_26() |
| 206 | { |
| 207 | print_result(combinations(3, xs)); |
| 208 | } |
| 209 | |
| 210 | // P27 (**) Group the elements of a set into disjoint subsets. |
| 211 | void problem_27() |
no test coverage detected