Tip 1 : focus on dsa
Tip 2 : Basics are important
Tip 3 : regular contests
Tip 1: keep it one page
Tip 2: you should know each and every thing you write
Contains 4 questions
online code
one basic question to be solved only in python
one recursion question on placing knight on chess
one very basic array and string question easy difficulty
one medium level dsa question



I am not that much familiar with python but was able to solve some test cases, as it was easy.



Following is the possible movements of the knight from a particular position.

simply apply basics counting all the no of possible ways.
45 min online interview round 1
two easy questions to be solved on hackerrank
and then explain the code



A pair ('ARR[i]', 'ARR[j]') is said to be an inversion when:
1. 'ARR[i] > 'ARR[j]'
2. 'i' < 'j'
Where 'i' and 'j' denote the indices ranging from [0, 'N').
follow basics and optimize later



basics and optimization
1 hard-medium question
online interview round2



The width of each bar is the same and is equal to 1.
Input: ‘n’ = 6, ‘arr’ = [3, 0, 0, 2, 0, 4].
Output: 10
Explanation: Refer to the image for better comprehension:

You don't need to print anything. It has already been taken care of. Just implement the given function.
follow approach rather solution, convince the interviwer
online interview round 3
Asked about resume, projects, skills , extra curricular clarity activities, hobbies , intro
Tip 1: be well prepared for interview
Tip 2: prepare for intro
Tip 3: make sure you know what u wrote in resum

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?