P09 (**) Pack consecutive duplicates of list elements into sublists.
| 72 | |
| 73 | // P09 (**) Pack consecutive duplicates of list elements into sublists. |
| 74 | void problem_09() |
| 75 | { |
| 76 | print_result(group(xs)); |
| 77 | } |
| 78 | |
| 79 | // P10 (*) Run-length encoding of a list. |
| 80 | void problem_10() |
no test coverage detected