发信人: lusty (lusty), 信区: JobHunting
标 题: Uber 面经
发信站: BBS 未名空间站 (Fri Apr 15 01:33:31 2016, 美东)
Uber:
1. Merge Two Sorted Lists
2. Sparse Matrix Multiplication
3. 给一个n列类似俄罗期方块的盘, 往下掉方块. 方块定义如下:
class Block {
int left;
int right;
int height;
}
其中 0<= left < right < n , 像俄罗斯方块一样会叠起来. 求最高高度
class FallingBlock {
public FallingBlock(int width);
public void fallBlock(Block block);
public int getMaxHeight();
}
4. design whatsapp
No comments:
Post a Comment