Give two integer arrays A & B.A has n elements and B has ' n-1 ' elements . A has all the elements that are there in B. But B has one missing element. Write a function that takes arrays , A & B as imnput and finds the missing element in most optised manner .
Answer Posted / abhi
#include<iostream>
using namespace std;
#include<algorithm>
int main()
{
int n;
cin>>n;
int a[n],b[n-1];
int sum1=0,sum2=0;
for(int i=0;i<n;i++)
{
cin>>a[i];
sum1+=a[i];
}
for(int i=0;i<n-1;i++)
{
cin>>b[i];
sum2+=b[i];
}
cout<<sum1-sum2<<endl;
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
write a program that will accept a number and print.its equivalent in words the maximum input number is 9999
In what scenario does the Logical file and Physical file being used?
Why should a c++ programmer be interested in stl?
What does stl stand for in basketball?
How do you convert stl to steps?
What do stl stand for?
What is the stl, standard template library?
Describe the My Computer and My Documents folders; identify the elements that are present in every Window.
How is stl different from c++ standard library?
What is meant by stl in c++?
draw a flowchart that accepts two numbers and checks if the first is divisible by the second.
How stl is different from the c++ standard library?
What does stl mean in slang?
how can u do connectivity in c++ language? plz send me connectivity code in c++ ?
What are the symptoms of stl?