P19 (**) Rotate a list N places to the left.
| 161 | |
| 162 | // P19 (**) Rotate a list N places to the left. |
| 163 | void problem_19() |
| 164 | { |
| 165 | print_result(apply_function_n_times(rotate_left<Ints>, 3, xs)); |
| 166 | } |
| 167 | |
| 168 | // P20 (*) Remove the K'th element from a list. |
| 169 | void problem_20() |
no test coverage detected