Tip 1: Prepare coding well. It will help in written tests and interviews.
Tip 2: There will be a debugging section as well as a coding section, so prepare accordingly.
Tip 1: Include projects you are strong in, as you may be asked to explain one or more of them.
Tip 2: Always practice your coding skills. Don't skip topics like Graphs and Dynamic Programming (DP). These are important and often tricky. There will be a question from graphs in the coding section of the written test.
The timing was in the evening from 7 PM to 8:20 PM.
‘POINTS = [ [3, 1], [-1, 3], [2, 0] ]’, ‘N = 3’
The path with minimum time is: ‘[3,1] -> [2,2] -> [1,3] - > [0,3] -> [-1,3] -> [0,2] -> [1,1] -> [2,0]’.
Time taken from [3,1] to [-1,3] = 4 seconds.
Time taken from [-1,3] to [2,0] = 3 seconds.
Total time = 7 seconds. Thus, you should return ‘7’ as the answer.
If the given array is: [0, 0, 1, 0, 1] The largest subarray would be: [0, 1, 0, 1] (last 4 elements) having length 4.
The round was online and it took place in the morning from 11 AM to 12 PM. Starting 10 mins went to asking questions like "Tell me about yourself" and "What do you know about the company" etc. The interviewer was friendly.
Input: linked list = [1 2 3 4] , k = 2
Output: 3 4 1 2
Explanation:
We have to rotate the given linked list to the right 2 times. After rotating it to the right once it becomes 4->1->2->3. After rotating it to the right again, it becomes 3->4->1->2.
Suppose given input is "abacb", then the length of the longest substring without repeating characters will be 3 ("acb").
Explain any project from your resume and how is it helpful to the community.
Tip 1: As I said before, explain the one in which you had the maximum contribution.
Tip 2: You will get follow-up questions as to why you have added a specific feature, be ready for such questions.
Tip 3: Know and research well about the tech stack you have used in the project.
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the output of print(type("Python"))?