J'ai postulé en ligne. Le processus a pris 3 semaines. J'ai passé un entretien chez Snowflake en juil. 2019
Entretien
The phone screen followed by 2 coding interviews, which was easy. But, the funny thing is both the interviewers ended up asking the same coding question. I asked the 2nd interviewer to change the question. The onsite interview revolved around the areas each interviewer are familiar with and less around the observability.
Questions d'entretien [1]
Question 1
Write a function that takes an array, and two numbers (a,n), then reverses everything in the array from the ath element to the nth element.
partial_reverse(['a','b','c','d','e','f','g'], 2,5) would print out:
a e d c b f g