Home assignment:
1. easy question: find the maximum 1 digit number in an array of numbers. focus on correctness and not performance.
2. medium question: find the longest sub-array of alternating 2 numbers (i.e [6, 2,3,2,3,5,8] should return [2,3,2,3])
On-site interview 1:
1. TwoSum with variations
2. Implement a stack with a max function in O(1).
3. You have tons of data that you need to process concurrently. How would you split the data?
On-site interview 2:
Design a modular scoring methodology to events at the AppsFlyer system.