I applied online. The process took 3 weeks. I interviewed at Google
Interview
Two phone interviews. Does a given file name match a single-star pattern?
index.html matches *.html
foo.txt does not match *.html
matches(“index.html”, “*html”) returns true
matches(“foo.txt”, “*html”) returns false
matches(“cat”, “c*t”) returns true
I applied through college or university. The process took 2 weeks. I interviewed at Google in Oct 2013
Interview
On campus Interview. Two back to back 45 min technical interviews
Interview questions [1]
Question 1
1. A rotated sorted array and find the begin of the array(smallest).
2. given a pattern array and a search array. if the pattern appears in the search array in order than return true
3. given infinitely numbers, for every number compute the average of the former k numbers.