I applied online. The process took 3 weeks. I interviewed at Snowflake in Jul 2019
Interview
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.
Interview questions [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