J'ai postulé en ligne. Le processus a pris 5 jours. J'ai passé un entretien chez InterviewVector (Meerut) en août 2022
Entretien
first we had a discussion about all previous projects and after that we started coding round .
All the interview questions were average and write a code with minimum time complexity .
Binary search tree
Questions d'entretien [1]
Question 1
Given a sorted array of distinct integers and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in order.
You must write an algorithm with O(log n) runtime complexity.
Example 1:
Input: nums = [1,3,5,6], target = 5
Output: 2