Tip 1 : Try to solve atleast 20 questions from every data structures.
Tip 2 : Dont fake anything in resume.
Tip 1 : Make sure your resume is ATS friendly.
I had my round around 10 am in the morning . The interview was conducted on interview-vector. The interviewer was friendly and was very helpful. I was asked 2 coding questions in 60 mins, which I solved. Intially he asked me to give a basic introduction of myselfand after that he introduced himself and about the company



Tip 1 : using Kadene's algo i solve this in few minutes



You can use any string of A multiple times.
A =[“coding”, ”ninjas”, “is”, “awesome”] target = “codingninjas”
Ans = true as we use “coding” and “ninjas” to form “codingninjas”
Tip 1 : I use a boolean vector dp[]. dp[i] is set to true if a valid word (word sequence) ends there. The optimization is to look from current position i back and only substring and do dictionary look up in case the preceding position j with dp[j] == true is found.
i had this round around mid day and the interviewer was a senior software engineer with 5 years of experience and we both introduce each other and after that he asked me 2 questions



i use simply dfs to solve this problem and he was satisfied with my solution



Input: 'n' = 3, 'k' = 2 and 'arr' = {1, 2, 3}
Output: 2
Explanation: The maximum possible minimum distance will be 2 when 2 cows are placed at positions {1, 3}. Here distance between cows is 2.

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?