The interview started with basic questions: tell me about yourself, tell me about your project, whats one issues you had to work through.
Then went into technical problems:
canBePalindrome?
Given two arrays of points and boundaries, return a new array with the count of all points within the boundaries.
ex: points = [ 2, 4, 6, 11]
boundaries = [0, 8, 15]
result = [3, 1]
( 2, 4, 6 are all within [0, 8] bounds and 11 is within [6,15] bounds )