Common elements between array of strings
Given two 1-dimensional arrays containing strings of lowercase alphabets, print the elements that are common in both the arrays i.e. the strings that are present in both the arrays.
Note:
An element of one array can be mapped only to one element of the array. For example :
Array 1 = {“ab”, “dc”, “ab”, “ab”}
Array 2 = {“dc”, “ab”, “ab”}
The common elements for the above example will be “dc”, “ab”, and “ab”.
Input Format:
The first line of input contains an integer 'T' representing the number of test cases. Then the test cases follow.
The first line of each test case includes two integers, 'N' and 'M', representing the sizes of both the arrays.
The second line of each test case contains 'N' single-spaced strings representing the elements of the first array.
The third line of each test case contains 'M' single-spaced strings representing the elements of the second array.
Output Format:
For each test case, the common elements of both arrays are printed in the order in which they appear in the second array. The elements are printed in a single space-separated manner.
The output for each test case will be printed in a separate line.
Note:
You do not need to print anything, it has already been taken care of. Just return the common elements in the specified order.
Constraints:
1 <= T <= 10
1 <= N, M <= 10000
1 <= S <= 10
Where 'T' is the number of test cases. 'N' and 'M' are the sizes of both the arrays and 'S' is the length of the strings of the arrays. Also, the strings contain only lowercase alphabets.
Time limit: 1 sec.
CodingNinjas
author
2y
Step 1 : Traverse through the first array and store its contents in a hashmap. If key (string) appears for the first time set corresponding value (count) as 1, else increment count.
Step 2 : Traverse t...read more
CodingNinjas
author
2y
Bruteforce approach
The main idea behind this approach is to solve the problem intuitively, and for each string in the second array, check if it exists in the first array (we are checking for each stri...read more
CodingNinjas
author
2y
Using Hashmap
The main idea behind this approach is to use a hashmap to store the count of the strings.
Algorithm :
- Traverse the first array and for every string in the first array do the following :
- If...read more
CodingNinjas
author
2y
Using Trie
The main idea behind this approach is to use a trie to store the frequencies of the strings in the first array. We can add an additional field “COUNT” in the implementation of the node of th...read more
Add answer anonymously...
Top Societe Generale Global Solution Centre Software Engineer interview questions & answers
Popular interview questions of Software Engineer
Top HR questions asked in Societe Generale Global Solution Centre Software Engineer
>
Societe Generale Global Solution Centre Software Engineer Interview Questions
Stay ahead in your career. Get AmbitionBox app
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