You are given two memory buffers:
Your task:
arr[i]
)
Constraints
Example-1
Input: n = 5, source = [10, 20, 30, 40, 50]
Output: dest = 10 20 30 40 50
Example-2
Input: n = 3, source = [-5, 0, 5]
Output: dest = -5 0 5
Input
5 10 20 30 40 50
Expected Output
10 20 30 40 50