1st Question :
Given a 2D array marks which can contain positive and negative scores, find the max average.
String[][] = {{"Jethiya" : "20"}, {"Bida" : "50"}, {"Iyer Idli": "99"}, {"Jethiya" : "25"}}
Ans : "Iyer Idli"
2nd question :
Given a 2D array locations where each location can contain a value stone, you will start from (row-1, 0) and end at (0, col-1) find the optimal path where the maximum value can be achieved.
int[][] locations = {{9,0,2,0,1}, {0,1,1,1,0}, {2,0,0,0,0}}
Ans : 14
Exactly same as 62. Unique Paths
I was able to solve both questions in 50 mins, but I didn't heard from the HR for superday. In how many days can I expect the Super day.
And what is usually asked in Super day. If any candidate who recently attended super day can share.
I applied via referral last year and gave OA in Jan but the process started now.