J'ai postulé via un recruteur. J'ai passé un entretien chez CB4 (Herzliya) en janv. 2026
Entretien
1. Call from an external HR company
2.Technical interview with TL: asked the following: tell about yourself, describe a bug in production and what resolution you implemented. Discussed design of solution. 3. White paper coding problem - gave 20 min to solve (even though said 30 min ). I asked regarding the interview process and was answered that the following will come:
3. Technical interview with Manager
4. HR
5. Team Leader expectations meeting
Questions d'entretien [1]
Question 1
You are given:
A Range class with min and max
Two arrays of Range objects
Each array is:
Sorted by min
Non-overlapping internally
(range[i].min > range[i-1].max)
Goal:
Merge both arrays
Return a single sorted array
Maintain the same non-overlapping rule
Merge overlapping ranges across arrays