There were 8 different interviews and as I understood, it was not even a final round when I gave up. Honestly, I knew there aremore stages in enterprises, but this was a bit too much. There were easy algorithmic tasks on 5 interviews in a row
Questions d'entretien [1]
Question 1
One of algos: Given a list of ints and a target number, we need to find a range such that the sum of its elements gives the target number. elements = [1, -3, 4, 5] target = 9 result = range(2, 4) # because elements[2] elements[3] == target