first interview had like 5 or 6 short questions followed by a coding question which was
sum of 2 numbers within one array adds up to a target number which you have as a parameter fairly easy question if you read all the interviews questions on glassdoor.
second phone interview had 2 questions
the first one was a find the kth node in a linkedlist and the second was to check a string for "(" and ")" and there are only so many combinations that are considered valid and invalid. Valid is if all the "(" have an ending ")" for example , (( )) or ()()
Invalid would be )()( or ((()
if the string starts with ) its automatically invalid.
second interviewer asked time complexities on both of the question.