Tip 1 : Clear your basics
Tip 2 : Try to solve the question but don't giveup in the interview
Tip 3 : Be polite and always ask for feedback
Tip 1 : Try to keep it as basic to understand
Tip 2 : Use a good design
Two coding Questions were asked in this round



Input:
str="AABC" k=1
Output:3
Explanation: Replace 'B' with 'A', we will get "AAAC" and the longest substring with same character is "AAA" of length 3.



Questions resolving around JS, react js and code bases questions, logical questions (use cases)




FIGURE 1
Input for the above list is:
10 5 12 7 11 -1 4 20 13 -1 -1 -1 17 6 -1 -1 -1 2 -1 16 -1 9 8 -1 -1 -1 3 -1 19 15 -1 -1 -1 -1 -1
Tip 1 : Think of the best method to use
Tip 2 : Try to do it under minimum time complexity
I was asked to create an entire todo app from scratch in 75 mins ( app setup included )
Create an entire todo app according to their design and from scratch

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?