Given two arrays, 1,2,3,4,5 and 2,3,1,0,5 find which number is not present in the second array.in python
Answers
Answered by
0
Answer:
fir
Explanation:
c the end of the end of the end of the end of the end of the end of
Answered by
0
Answer:
Input : a = {1, 2, 3, 4, 5, 10};
b = {2, 3, 1, 0, 5};
Output : 4 10
4 and 10 are present in first array, but
not in second array.
Input : a = {4, 3, 5, 9, 11};
b = {4, 9, 3, 11, 10};
Output : 5
Explanation:
Hope it is helpful
Similar questions