Find missing element in an array.

Certified Associate Developer

Given an array of size N-1 such that it only contains distinct integers in the range of 1 to N. Find the missing element.

Example 1:

Input:
N = 5
A[] = {1,2,3,5}
Output: 4

  Discussion posts and replies are publicly visible

Parents Reply Children
No Data