I applied online. I interviewed at Pebble Technology
Interview
It was a hangout interview. He asked me to code on code edit. I was given a code and asked to write a solution in any language of my preference. I chose C. The crucial part here is when you encounter a 0 in a column for the first time, you make that column 0 as well as the row 0. But one consideration is we dont have to forget the 0s in the same column or row that might be there to make the corresponding rows/collumns 0s too.
Interview questions [1]
Question 1
Given a pxq input matrix of 0s and 1s. Write a function to make the rows and columns 0 that contain an element 0. For example [111 100 101] should become [100 000 000]