Tip 1 : Write good optimized code
Tip 2 : Prepare Data Structures
Tip 3 : Should have atleast one good project
Tip 1 : Don't make resume too lengthy.
Tip 2 : Have some projects on resume.
First test consists of 30 aptitude questions
second test consists of 4 ds and algo questions
Consider the array { 1, 1, 0, 2, 0 }.
For the given array the modified array should be {0,0,1,1,2} .
Arrays { 0, 0, 1, 2, 1 } and { 0, 0, 2, 1, 1 } are not the correctly reorganized array even if they have all the zero values pushed to the left as in both the arrays the relative order of non-zero elements is not maintained.
Can you solve the problem in linear time, and constant space?
Difference delete and truncate
what DML languages
Sql vs no sql
1. Pair (x,y) and Pair(y,x) are considered as the same pair.
2. If there exists no such pair with sum equals to 'TARGET', then return -1.
Let ‘ARR’ = [1 2 3] and ‘TARGET’ = 4. Then, there exists only one pair in ‘ARR’ with a sum of 4 which is (1, 3). (1, 3) and (3, 1) are counted as only one pair.