Solicité el puesto a través de la escuela superior o la universidad. El proceso duró 1 día. Acudí a una entrevista en SAP (Vancouver, BC) en ene 2019
Entrevista
1 hour long interview - My interviewers were pretty friendly!
A few minutes in the beginning for behavioural/resume questions
Code Review based on Nodes/LinkedList concepts
Technical Question based on finding the largest difference between two positive integer lists
Preguntas de entrevista [2]
Pregunta 1
Code Review
- Correct all errors you can find.
- Be nitpicky about readability and errors.
- There can be bugs in the code, understand it by running through with an example first.
Technical Question:
Given two unsorted lists of positive integer numbers, find the largest difference between the two. The number in list1 must be smaller than list2.
Example:
{1, 3, 8, 7, 4}
{0, 2, 6, 5, 10}
Largest difference is between 1 and 10.