I applied online. I interviewed at Meta (London, England) in Jul 2017
Interview
Phone interview about CV, then two coding interviews with engineer over bluejeans and codepad platforms. 45 minutes technical interview with 1 real life coding question. Feedback from recruiter in about 2 work days.
Interview questions [1]
Question 1
Find number in sorted array with rotation. Ex. array is [5, 7, 8, 1, 3].
1 phone interview and 1 onsite interview which has 3 rounds. The whole process last about one month. The overall experience is pretty positive. But did not get offer eventually.
Interview questions [1]
Question 1
Some technical questions and the last onsite round is a behavior one.
I applied through college or university. I interviewed at Meta (Hyderabad) in Aug 2017
Interview
This interview is for the role of software developer internship at London. The hiring process is pretty smooth. After shortlisting is done, there are two to three phone interviews. The recruiter is very good.
Given a mapping of Char to Char array. Given an input string S. Find all possible strings that can be generated.
every character in the input string should be replaced by a character in its corresponding mapped array of characters.
Ex:
'1' => ['a', 'b', 'c']
'2' => ['d', 'e']
.
.
.
Input : "12"
output: ["ad", "ae", "bd", "be", "cd", "ce"]