Tip 1 : Do DSA medium to hard questions for them
Tip 2 : The team is very small so they want someone who is already very skilled.
Tip 3 : Learn about Backend Development and main about writing code.
Tip 1: Have good Internship Experience
Tip 2: Have good Projects
3 Medium to Hard Questions were there, about binary search, 2nd was about DP and 3rd question was from Graph.
I was able to solve 2.5 out of 3 and got selected for next round.



Input: 'a' = [2, 4, 6] and 'b' = [1, 3, 5]
Output: 3.5
Explanation: The array after merging 'a' and 'b' will be { 1, 2, 3, 4, 5, 6 }. Here two medians are 3 and 4. So the median will be the average of 3 and 4, which is 3.5.
I solved it using Binary Search and It passed few test cases.



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.
Path solving with all path positive but some multidirectional also
I was given an API to which I have to call and fetch the data and on basis of that I have to write proper clean code and that was difficult for me because I haven't worked on that so It was very good and productive talk with him.
Web API Call
Tip 1: Learn about Backend Development
Tip 2: Learn about REST APIs
Tip 3: Learn about writing clean code

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is the default value of int data type?