Write a function to find the missing number in a given integer array of 1 to 100. The function takes to parameter the array and the number of elements that needs to be in array. For example if we want ...
int n = nums.size(); // Get the size of the array, which corresponds to the largest number in the range int sum = 0; // Variable to store the sum of the elements in the array // Calculate the sum of ...