J'ai postulé via la recommandation d'un employé. Le processus a pris 5 semaines. J'ai passé un entretien chez Meta (San Francisco, CA) en mars 2012
Entretien
First HR person took a 30 minute session to talk about the company, work-culture, facebook's bootcamp
Then after a week first telephonic was scheduled and then almost after every 10 days interval next telephonic was scheduled.
Important TIP: Interviewers are very helpful, some people have mentioned that they are very strict but that's not the case. Keep your head cool and answer to their questions patiently. They usually don't mind small mistakes in the code.
Questions d'entretien [5]
Question 1
Function to compute the number of ways to climb a flight of n steps. Taking 1, 2, or 3 steps at a time. Do it in Linear time and constant space.
n = 3.
1 1 1
1 2
2 1
3
Ans = 4
Given a dictionary based simple password, create all possible (special character) passwords based on a provided mapping.
Input: face
Map: {a -> @, 4, A}
Output: f@ce, f4ce, fAce
Get numeric number out of a roman string, linear time
Given: mapping I = 1, V = 5, X = 10, L = 50, C = 100, D = 500, M = 1000
Input/Output:
II = 2, III = 3, IV = 4
VI, VII, VIII
IX = 9
XL = 40,
XLIX = 49