https://app.codesignal.com/arcade/intro/level-8/3AgqcKrxbwFhd3Z3R
Given array of integers, remove each kth element from it.
For inputArray = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] and k = 3, the output should be solution(inputArray, k) = [1, 2, 4, 5, 7, 8, 10].