Tip 1 : solve as many questions as possible
Tip 2 : take part in contests on codechef and codeforces
Tip 3 : try to design simple systems like parking lot and hotel management
Tip 1 : concise and accurate
Tip 2 : no false information



Anagrams are defined as words or names that can be formed by rearranging the letters of another word. Such as "spar" can be formed by rearranging letters of "rasp". Hence, "spar" and "rasp" are anagrams.
'triangle' and 'integral'
'listen' and 'silent'
Since it is a binary problem, there is no partial marking. Marks will only be awarded if you get all the test cases correct.


If the given matrix is:
[ [1, 2, 5],
[3, 4, 9],
[6, 7, 10]]
We have to find the position of 4. We will return {1,1} since A[1][1] = 4.
This was not actually a technical round, it was a behavioral one. The round was at 4:00 pm. The interviewer was a really enthusiastic guy wanting to know more about me and was up for a really good conversation to know me better.
What makes you angry?
Are you open to take risks? or Do you like experimenting?
What are your future goals? Tell me about your short term and long-term goals.

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?