Google Onsite Interview Experience
Anonymous User
3548

Onsite Round 1

  1. Implement RangeSet interface which contains two methods i.e. containsInRange(int num) and addRange([1,5])
       	 void addRange(int[] interval);
       	 boolean checkInRange(int num);
    }```
    
    For example. if I call addRange([1,3]) and addRange([5,9]) and if I call checkInRange(3) => true, but checkInRange(4) => false

Onsite Round 2

https://leetcode.com/discuss/interview-question/1496278/Google-Phone-Interview-Problem-Lyrics-and-Keyword/1102175

Waiting for next rounds !!

Comments (2)