P14 (*) Duplicate the elements of a list.
| 129 | |
| 130 | // P14 (*) Duplicate the elements of a list. |
| 131 | void problem_14() |
| 132 | { |
| 133 | print_result(replicate_elems(2, xs)); |
| 134 | } |
| 135 | |
| 136 | // P15 (**) Replicate the elements of a list a given number of times. |
| 137 | void problem_15() |
no test coverage detected