Candidatei-me online. O processo levou 5 dias. Fui entrevistado pela InterviewVector (Meerut) em ago. de 2022
Entrevista
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
Perguntas de entrevista [1]
Pergunta 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