Tip 1 : Start coding regularly on any platform.
Tip 2 : Start giving coding contest regularly
Tip 3 : Revise core subjects regularly
Tip 1: Add at least two Web Development Projects
Tip 2: Resume should be short and precise
20 MCQ
3 coding problem



1. The heights of the buildings are positive.
2. Santa starts from the cell (0, 0) and he has to reach the building (N - 1, M - 1).
3. Santa cannot leave the grid at any point of time.
Suppose you are at third index , means you have 3 steps closer to the end and you can move according to the value, so check if (nums[i]+i>=n-1>) where n-1 is the index of last.
Now by chance you reached at an index where you can't move anymore i.e. you have nums[i]=0, keep a track of max index, that suppose nums[3,0,2] , so when you reach at i=1, the max_jump is 3, so you can move on.
If it is less than the index which has 0 value, then return false.


The largest sub-matrix having an equal number of 0s and 1s in the above grid is shown below :

The area of the largest sub-matrix having an equal number of 0s and 1s is 4(rows in highlighted image) * 2(columns in highlighted image) = 8.
30 minutes of technical interview, started off with core subject questions then some complexity question.



We have a linked list 1->2->3->4->5->6->7 and so on. You are supposed to swap pairs of a linked list like swap (1,2), (3,4), (5,6), and so on.
1. You may not modify the data in the list’s nodes; only nodes themselves may be changed. Because imagine a case where a node contains many fields, so there will be too much unnecessary swap.
2. If a pair of a node does not exist, then leave the node as it is.
Given a linked list, swap every two adjacent nodes and return its head. You must solve the problem without modifying the values in the list's nodes (i.e., only nodes themselves may be changed.)
The Environment was good , the interview started of With some Complexity Questions then core subjects Questions and then coding problems and you have solve the problem on paper and then some puzzle and project related problems



If arr = [3,2,3], and k = 1
then there are 4 subarrays with 1 odd elements:
[3], [3,2], [2,3] & [3].
From the problem statement we can identify its a sliding window question
some HR Questions and puzzle and then one problem to design the resume as my resume contains full stack web development
Asked what exactly the firm does and explain how exactly you fit in for this role
Asked hobbies, short term and long term goals.
how you keep yourself Motivated
Design your Resume in HTML in paper

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the purpose of the return keyword?