P20 (*) Remove the K'th element from a list.
| 167 | |
| 168 | // P20 (*) Remove the K'th element from a list. |
| 169 | void problem_20() |
| 170 | { |
| 171 | print_result(drop_idx(0, xs)); |
| 172 | } |
| 173 | |
| 174 | // P21 (*) Insert an element at a given position into a list. |
| 175 | void problem_21() |
no test coverage detected