Tip 1 : Participate in programming competitions and practice at least 100 questions.
Tip 2 : Get an internship experience or take part in hackathons.
Tip 3 : Be comfortable with the OOP concept and fundamental programming principles.
Tip 1 : Keep your resume concise.
Tip 2 : Try mentioning all your skills on the resume.
Tip 3 : Don't forget to add your best projects and certificates.



If the given array is: [0, 0, 1, 0, 1] The largest subarray would be: [0, 1, 0, 1] (last 4 elements) having length 4.
An easy problem is solved by changing the counter to 1 every time 1 comes after 0 or vice versa.
The maximum value is to be stored at the time of each swap.



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.
The problem came with getting the test cases done within the time limit which was O(log(N1+N2)).
I solved the problem by using Binary Search implementation.
Around 2:30
Questions on the OOP concepts, DBMS, and OS were asked.
Questions on
1. Internship experiences.
2. Projects in college.
3. Hackathons learnings.
4. Future goals.
were asked.

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?