Candidatei-me por meio de uma faculdade ou universidade. O processo levou 1 dia. Fui entrevistado pela SAP (Vancouver, BC) em jan. de 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
Perguntas de entrevista [2]
Pergunta 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.