Software Engineer · Junior-Level · Onsite
### Round 1: Coding The coding question was to write a class that supports `insert(num: int)` and `findLargest(k:int)` methods. For example: ``` insert(3) insert(3) insert(2) findLargest(0) is 3 findLargest(1) is 3 findLargest(2) is 2 ``` The goal was to make...