P15 (**) Replicate the elements of a list a given number of times.
| 135 | |
| 136 | // P15 (**) Replicate the elements of a list a given number of times. |
| 137 | void problem_15() |
| 138 | { |
| 139 | print_result(replicate_elems(3, xs)); |
| 140 | } |
| 141 | |
| 142 | // P16 (**) Drop every N'th element from a list. |
| 143 | void problem_16() |
no test coverage detected