InMobi interview question

Given n sorted integer arrays, create a big sorted array

Interview Answer

Anonymous

24 June 2019

Started with a pointer for each array as simplest approach. Then with hint, got to solution with min heap

1