Tip 1 : DSA should be very good
Tip 2 : Mention only those projects which you know in depth
Tip 3 : Get good knowledge of Networks.
Tip 1 : Good Projects
Tip 2 : DSA level should be good
DSA Question was asked, One Hard question was there and I completed that with edge cases on time and then discussion on Projects



Input: 'a' = [2, 4, 6] and 'b' = [1, 3, 5]
Output: 3.5
Explanation: The array after merging 'a' and 'b' will be { 1, 2, 3, 4, 5, 6 }. Here two medians are 3 and 4. So the median will be the average of 3 and 4, which is 3.5.
1. Told all approaches starting from Brute Force.
2. Calculating size and then moving to optimized approach and then he told to do in O(log(m+n)) and did that also
1. Puzzle was asked
Measure a time of 45 minutes by burning two ropes each of which takes 1 hour to burn out.
The ropes are of same length but none of the two burns at a uniform rate throughout the length. That's why you cannot just measure a point at three-fourth of the length of a rope and start burning at that point to measure 45 minutes.
Only saving grace is the allowance that one or both of the ropes can be burned simultaneously at multiple points.
Tip 1 : Solve all puzzles on CodeStudio
Tip 2 : Check GFG puzzles also once
Tip 3 : Try to think more logical
1 DSA Question of Medium level was asked and I fumbled up in test cases and that's why took a lil bit more time and got rejected in last round. :(



1. You can return the list of values in any order. For example, if a valid triplet is {1, 2, -3}, then {2, -3, 1}, {-3, 2, 1} etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
1. Explained in very detail about Problem
2. A bit variation of 3 sum so got fumbled up and were not able to solve in that time and took 4-5 mints more

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?