Me postulé a través de una recomendación de un empleado. El proceso tomó 5 semanas. Acudí a una entrevista en Meta (San Francisco, CA) en mar 2012
Entrevista
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.
Preguntas de entrevista [5]
Pregunta 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