Tip 1 : Practice questions
Tip 2 : Do atleast 1 good project
Tip 3 : Try for more Hands-on
Tip 1 : 1 page
Tip 2 : Mention all Programming Skills



1. The integers x,y and z might not be distinct , but they should be present at different locations in the array i.e if a[i] = x, a[j] = y and a[k] = z, then i,j and k should be pairwise distinct.
2. The integers a,b and c can be present in any order in the given array.



The Linked Lists, where a1, a2, c1, c2, c3 is the first linked list and b1, b2, b3, c1, c2, c3 is the second linked list, merging at node c1.

Simply use two loops.
Use 2 nested for loops. The outer loop will be for each node of the 1st list and inner loop will be for 2nd list. In the inner loop, check if any of nodes of the 2nd list is same as the current node of the first linked list. The time complexity of this method will be O(M * N) where m and n are the numbers of nodes in two lists.
It was a digital HR round. 30 secs for each displayed questions.
What is your goal?
What makes you different from others?
Tell us about yourself and family.
1 to 1 interview. Asked questions about my project. Some questions on SQL and Python. Name some python libraries and their use. What is primary key?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you remove whitespace from the start of a string?