Tip 1 : Start with very basic such as choose any language that you like and have a command over that language.
Tip 2 : Once you have command over a particular language start with data structures and choose any resource from which you understand best in my case it was youtube i did my 90% of preparation on YouTube l.
Tip 3 : Once you have a fine knowledge about all the data structures and can choose any platform to practice your coding skill. In my case i was practicing on leetcode.com
Tip 1 : Only mention those skill in which you have knowledge that if any questions asked atleast you are able to frame the answer.
Tip 2 : Try explaining a bit about the project done.



Consider below matrix of characters,
[ 'D', 'E', 'X', 'X', 'X' ]
[ 'X', 'O', 'E', 'X', 'E' ]
[ 'D', 'D', 'C', 'O', 'D' ]
[ 'E', 'X', 'E', 'D', 'X' ]
[ 'C', 'X', 'X', 'E', 'X' ]
If the given string is "CODE", below are all its occurrences in the matrix:
'C'(2, 2) 'O'(1, 1) 'D'(0, 0) 'E'(0, 1)
'C'(2, 2) 'O'(1, 1) 'D'(2, 0) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(1, 2)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 0)
'C'(2, 2) 'O'(1, 1) 'D'(2, 1) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(2, 4) 'E'(1, 4)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(3, 2)
'C'(2, 2) 'O'(2, 3) 'D'(3, 3) 'E'(4, 3)
So to solve this problem i used hashmap .
And and in hashmap i stored occurrences of every character and in the end i simply retured the occurrence for the character asked.



Input array [1,3,2,7] so basically this array represents the number 1327.
All the possible combinations are :
1. [3 1 2 7] get by swapping indices 1 and 2.
2. [2 3 1 7] get by swapping indices 1 and 3.
3. [7 3 2 1] get by swapping indices 1 and 4.
4. [1 2 3 7] get by swapping indices 2 and 3.
5. [1 7 2 3] get by swapping indices 2 and 4.
6. [1 3 7 2] get by swapping indices 3 and 4.
Out of all the possible combinations, 3 give the maximum number as 7321, so we will return [7 3 2 1].
The input may have 0 before the most significant digit. e.g. [0,3,5,7] is a valid input and this represents number 357.
I simply used if else condition to find the greatest among those three given integers.
Question was to find the day after 45 days if today is Monday.
Tip 1 : Just keep on practicing on daily basis.
She first asked to introduce myself and then she just simply asked what location i wanted. And that was it
Tip 1:Just say confidentially

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: