P21 (*) Insert an element at a given position into a list.
| 173 | |
| 174 | // P21 (*) Insert an element at a given position into a list. |
| 175 | void problem_21() |
| 176 | { |
| 177 | print_result(insert_at_idx(3, -1, xs)); |
| 178 | } |
| 179 | |
| 180 | // P22 (*) Create a list containing all integers within a given range. |
| 181 | void problem_22() |
no test coverage detected