Ho presentato la mia candidatura tramite l'università. La procedura ha richiesto un giorno. Ho sostenuto un colloquio presso SAP (Vancouver, BC) nel mese di gen 2019
Colloquio
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
Domande di colloquio [2]
Domanda 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.