Tip 1 : Practice at least 300 questions from leetcode.
Tip 2 : Do at least two valuable projects.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
I was given two coding questions to solve on the platform they provided in the interview.
If there are multiple solutions of a string, return the string with minimum total length.
Let str = abaccce
Now In this example, we can make a maximum of three substrings i.e. {‘b’, ‘ccc’, ‘e’}.
There can be one more solution with maximum substrings equal to three i.e. {‘aba’, ‘ccc’, ‘e’} but we have to select the substrings with minimum total length. So the final answer is {‘b’, ‘ccc’, ‘e’}.
For ‘arr’ = {1, 0, 0, 2, 1}.
‘Answer’ = {0, 0, 1, 1, 2}.
‘Answer’ should contain all 0s first, then all 1s and all 2s in the end.
This round was similar to the first round
str = “ababba”, k = 3.
In this example, If we remove one ‘b’ from the 3rd position, then the final string will be “ababa” which is a palindrome.
Hence the answer will be True.
Input: ‘N’ = 2 ,'GRID' = [[0,1],[1,1]]
Output: 4
Explanation:
Sam can plant a tree on the only remaining unplanted cell.
General discussion over various topics.
Introduce yourself?
Why do you think you are the perfect choice for the job profile?
What are your hobbies?
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you select an element by class name in CSS?