Tip 1 : Practice At least 100 ques on leetcode
Tip 2 : Prepare your resume well
Tip 3 : Prepare projects
Tip 1 : Resume format should be precise
Tip 2 : Do not put false things on resume
2 coding questions and 15 MCQs on logical reasoning



Do not allocate extra space for another array. You need to do this by modifying the given input array in place with O(1) extra memory.
'n' = 5, 'arr' = [1 2 2 2 3].
The new array will be [1 2 3].
So our answer is 3.
insert all element in a hashset, again enter all element in array of same size, sort it then



‘ARR1’ = [3 6 9 0 0]
‘ARR2’ = [4 10]
After merging the ‘ARR1’ and ‘ARR2’ in ‘ARR1’.
‘ARR1’ = [3 4 6 9 10]
take one more array or size = size of arr1 + size of arr 2, make 2 pointer points on both array, then iterate and compare, then put element increment respective pointer
it was a coding interview of 20 minutes, he asked me about my projects and my studies then asked 1 coding question



while loop till it get divided

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?