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 .
Answers were Sorted based on User's Feedback
Answer / aniruddha
public int check(int a[], int b[])
{ int value,w;
for(int i=0; i<=a.length; i++)
{ w=0;
for(int j=0; j<b.length; j++)
{
if(a[i]!=b[j])
{ w++;
break;
}
}
if(w==0)
value=a[i];
}
return value;
}
Is This Answer Correct ? | 12 Yes | 9 No |
Answer / rajesh
<?php
function findMissing($a1, $a2) {
for($i= 0; $i<count($a1); $i++) {
$found = false;
for($j= 0; $j<count($a2); $j++) {
if($a1[$i] == $a2[$j] ) {
$found = true;
break;
}
}
if($found == false) {
break;
}
}
return $a1[$i];
}
$element = findMissing(array(1, 3, 5, 7, 9, 10, 6), array(1, 3, 7, 9, 10, 6));
echo "Missing Element in second Array : " . $element;
?>
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / ninad
public int check(int a[], int b[])
{
int x;
int[] c=new int[a.length];
for(int i=0; i<=c.length; i++)
{
c[i]=0;
}
for(int i=0; i<=a.length; i++)
{
for(int j=0; j<b.length; j++)
{
if(a[i]==b[j])
c[i]=1;
}
}
for(int i=0;i<=c.length;i++)
if(c[i]==0)
x=a[i];
return x;
}
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / 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 |
What is a stl vector?
How do you convert stl to steps?
how to swap two numbers in a linked list without exchanging the data but only the links?
how to use C++?
how to making game in c++ ?
Find the error in the following program struct point {struct point *next; int data; } x; main() {int...data; } x; main() {int i; for(x=p;x!=0;) x=x->next,x++; freelist(x); } freelist(x) {free(x); return }
How Find, Replace and Go To commands ca be used to substitute one character string for another? Explain with the heIp of an example.
write a program that will accept a number and print.its equivalent in words the maximum input number is 9999
sir please send me bpcl previous question papers
0 Answers BPCL Bharat Petroleum,
what is strcture i++ i ++i answer to this i=5 what is the out put
Explain References in C++
Can we use stl in coding interviews?