Tip 1 : Practise DSA/coding consistently
Tip 2 : Choose a tech stack and Make side hobby projects
Tip 3 : Give mock interviews for your preparation evaluation
Tip 1 : Pointers about your current job responsibility
Tip 2 : Side Projects with Tech stack




For the above-linked list, if k=2, then the value at the kth i.e second node from the end is ‘12’.
1.You don’t need to take any input. It has already been taken care of. Just implement the given function and return a pointer pointing to the k-th element from the last of the linked list.
2.It is guaranteed that k<=size of the linked list.
Explained the approach by using 2 traversals - First to find the length of list and then to delete the node.
Also, discussed an approach to do it in one traversal.
High level System Design
Design Uber
Tip 1 : Study system design in depth
Tip 2 : Be familiar how to scale your design
Tip 3 : Be familiar with concepts like single point of failure
Basic HR questions
Why you want to join Uber
What are your expectations from Uber
Tip 1 : Show the HR that you are really interested in Uber
Tip 2 : Study about the company
Tip 3 : Try to negotiate

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?