Tip 1 : Stay motivated and do DSA daily
Tip 2 : make projects, work on your development skills
Tip 1 : mention projects, atleast 2
Tip 2 : give links of projects and coding profiles
The given linked list is 1 -> 2 -> 3 -> 4-> NULL. Then the reverse linked list is 4 -> 3 -> 2 -> 1 -> NULL and the head of the reversed linked list will be 4.
Can you solve this problem in O(N) time and O(1) space complexity?
I used three pointers curr, prev, and next to keep track of nodes to update reverse links.
and from there I was able to code.
Step1 : I tried brute force but it gives TLE
step2: I tried to tell for DP and able to answer and code.
what is abstract class?
What is constructors?
Rate yourself in HTML
Types of constructor?
What is polymorphism?
pointers, example of pointers
Introduce yourself
Are you able to work in night shift?
What do you know about the company?
Willing to relocate?
Do you have any other offer in hand?
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you select an element by class name in CSS?