First round was Machine coding
We had to make something Gmail
Second Round was UI tech
I was asked to make a alert with a backdrop
Third round Problem solving
{
a : {
b : (a,b,c)=>a+b+c,
c : (a,b,c) => a+b-c,
},
d : (a,b,c) => a-b-c
}
Create a function
Fn(obj)(1,1,1);
output
{
a : {
b : 3,
c : 1
}
d: -1
},
2. Implement LRU Cache in JS
3. return the missing number from 2 arrays