Tip 1 : Practice Quant questions
Tip 2 : Prepare your resume
Tip 3 : Be confident
Tip 1 : Keep your resume clear
Tip 2 : Highlight what you have accomplished



unordered_mapm;
for( int i=0;i m[arr[i]]++;
}
for( int i=0;i if( m[arr[i]]==1)return arr[i];
}
// Complete the function
return 0;



You must sell the stock before you buy it again.
class Solution{
public:
//Function to find the days of buying and selling stock for max profit.
vector > stockBuySell(vector A, int n)
{
vector> v;
vector temp;
int low=0,high=0;
for(int i=0;i<(n-1);i++)
{
low=i;
high=i;
while(A[i+1]>A[i] && i<(n-1))
{
++high;
++i;
}
if(low!=high)
v.push_back({low,high});
}
return v;
}
};
o consolidate your knowledge and concepts in DBMS
Explain different languages present in DBMS.
Tip 1 : DDL DML
Tip 2 : Practice
Tip 3 : Confidence
What is meant by ACID properties in DBMS?
Tip 1 : ACID stands for Atomicity, Consistency, Isolation, and Durability in a DBMS these are those properties that ensure a safe and secure way of sharing data among multiple users.
Tip 2 : Read DBMS Concepts
Tip 3 : Practice

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?