1. Presentation: the interviewer and interviewee have the chance to present each other
2. Code challenge: you have the chance to choose between (1) code in an online pad that doesn't have the option to run the code nor code marking or (2) you can share your screen and use your own IDE. I chose 1, looking back, I should have chosen option 2.
## Given a list, find if there are duplicates within distance ‘d’ of each other.
## Examples
## [1, 2, 3, 1, 3] d=3 -> True
## [1, 2, 3, 1, 3] d=2 -> True
## [1, 2, 3, 1, 3] d=1 -> False
3. Questions about the position