Question: 
Write a python function to split the array and add the first part to the end.


Model's Code:
def split_Arr(arr, n, d):
    d = d % n
    return arr[d:] + arr[:d]



Sample Correct Code:
def split_Arr(a,n,k):  
   b = a[:k] 
   return (a[k::]+b[::]) 


Asserts:
assert split_Arr([12,10,5,6,52,36],6,2) == [5,6,52,36,12,10]
assert split_Arr([1,2,3,4],4,1) == [2,3,4,1]
assert split_Arr([0,1,2,3,4,5,6,7],8,3) == [3,4,5,6,7,0,1,2]


Tests:
Test 1 of 3: PASS
Test 2 of 3: PASS
Test 3 of 3: PASS

Test 586 of 974: 435/586 (74.23208191126281%): success