Given two arrays of integers, find the one extra element in second array ? Eg. int[] arr1 = [1,3,7,8]; int[] arr2 = [3,8,7,9,1];

AnswerBot
9mo

Loop through both arrays and use a hashmap to store frequency of elements, then find the extra element.

  • Loop through both arrays and store frequency of elements in a hashmap

  • Compare the frequency of ele...read more

Anonymous
8mo
for i in arr2: if i not in arr1: print(i)
Help your peers!
Add answer anonymously...
HERE Technologies Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
65 L+

Reviews

4 L+

Interviews

4 Cr+

Salaries

1 Cr+

Users/Month

Contribute to help millions
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter