Question d’entretien chez Xome

How will you find common elements in two sorted integer arrays?

Réponse à la question d'entretien

Utilisateur anonyme

21 mars 2018

1. Use two for loops to find matching element from first array in second array and if matched add to a list. 2. Print the list.

1