is not a permutation. The goal is to check whether array A is a permutation. Write a function: int solution(int A[], int N); that, given a zero-indexed array A, returns 1 if array A is a permutation and 0 if it is not. For example, given array A such that: A[0] = 4 A...