Tip 1 : Practice at least 2-3 questions per day
Tip 2 : Don't stick to only 1 problem, try to solve other if it takes longer time
Tip 1 : Resume should be mention all your details
Tip 2 : Don't add things on which you are not comfortable. eg. if you are not very good in machine learning, then dont write it






You need to change in the given array/list itself. Hence, no need to return or print anything.



1. All the elements are in the range 0 to N - 1.
2. The elements may not be in sorted order.
3. You can return the duplicate elements in any order.
4. If there are no duplicates present then return an empty array.



The order of elements in the resulting array is not important.
Let the array be [1, 2, -3, 4, -4, -5]. On rearranging the array such that all negative numbers appear before all positive numbers we get the resulting array [-3, -5, -4, 2, 4, 1].
Scenario based questions.
Project discussion.
Salary negotiation.

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