Tip 1 : practice leetcode questions or any DSA questions as much as possible
Tip 2 : System Design(LLD) concepts are must.
Tip 3 : OOPS and complete knowledge about your current project in which you are involved in your current company.
Tip 1 : mention all the technical projects you have done.
Tip 2 : elaborate on your current work in your current company
Started with an introduction and then had a discussion on current projects I was doing in my company. which tech stack i am working on which i want to learn and why. any personal project I am doing or not apart from company work. then i had my 1st coding question was Heap based and then 2nd was on dynamic programming



You have a special type of car containing any number of seats.



1 coding question was asked and then a system design for a parking lot. In the end, had some discussion on my projects.



Input:
4 5
0 1 5
0 2 8
1 2 9
1 3 2
2 3 6

In the given input, the number of vertices is 4, and the number of edges is 5.
In the input, following the number of vertices and edges, three numbers are given. The first number denotes node ‘X’, the second number denotes node ‘Y’ and the third number denotes the distance between node ‘X’ and ‘Y’.
As per the input, there is an edge between node 0 and node 1 and the distance between them is 5.
The vertices 0 and 2 have an edge between them and the distance between them is 8.
The vertices 1 and 2 have an edge between them and the distance between them is 9.
The vertices 1 and 3 have an edge between them and the distance between them is 2.
The vertices 2 and 3 have an edge between them and the distance between them is 6.
1. There are no self-loops(an edge connecting the vertex to itself) in the given graph.
2. There can be parallel edges i.e. two vertices can be directly connected by more than 1 edge.
Design a parking system for a parking lot. The parking lot has three kinds of parking spaces: big, medium, and small, with a fixed number of slots for each size.
Tip 1 : practice solving such problems
Tip 2 : keep the mind in ways of scaling, fault tolerance

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