由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - MS SDET onsite
相关主题
不太明白 pixel 谁能说说图形学的画图?MS onsite interview
问一道算法题max length of subsequence string matching subs微软第一轮电面
请教G的一道题,觉得有点难……面试题:transpose a matrix in place
Offer求建议, 'at-will' 常见吗,是不是很不好呢?贡献一个MS onsite面试题
问一道数据结构题an old problem on algorithm
My Microsoft Interview Questions看不懂careercup上一题的答案
问一个古老的问题2维matrix装水问题
Smallest Rectangle Enclosing Black PixelsLinkedIn家电面面经
相关话题的讨论汇总
话题: 256话题: int话题: off话题: pixel
进入JobHunting版参与讨论
1 (共1页)
m*****k
发帖数: 64
1
Windows team, recruiter 刚刚打电话过来说,面得不错,但是team觉得我的背景都是做
internet的,与windows os fundamental & low level不符合。 所以不能给offer。
1) 一个monitor, 一共有256×256 pixel, 一个pixel用binary 表示就是1=on, 0=off。
用一个一维的int数组表示。 就是说 一个int 32bit, int[] monitor= new int[256/
32
* 256/32]; 比如说 0-30bit都是off,31bit是on,那么第一个int就是1
(0000...001(base2) =>1(base10) ). Monitor上有一天横线(pixel是on),给定
start,end 来表示(都是bit index)。再给定一个eraseStartIndex, 和length。要求
把从
eraseStartIndex开始,length长的横线设置成off。
e.g. start=100,end=200. eraseStartIndex=2, lengt
p*****e
发帖数: 1611
2
当时不能选team么?自动被分到windows的?
internet你可以去bing team阿

是做
off。
256/

【在 m*****k 的大作中提到】
: Windows team, recruiter 刚刚打电话过来说,面得不错,但是team觉得我的背景都是做
: internet的,与windows os fundamental & low level不符合。 所以不能给offer。
: 1) 一个monitor, 一共有256×256 pixel, 一个pixel用binary 表示就是1=on, 0=off。
: 用一个一维的int数组表示。 就是说 一个int 32bit, int[] monitor= new int[256/
: 32
: * 256/32]; 比如说 0-30bit都是off,31bit是on,那么第一个int就是1
: (0000...001(base2) =>1(base10) ). Monitor上有一天横线(pixel是on),给定
: start,end 来表示(都是bit index)。再给定一个eraseStartIndex, 和length。要求
: 把从
: eraseStartIndex开始,length长的横线设置成off。

m*****k
发帖数: 64
3
windows来找我的,投了bing,没人理。

【在 p*****e 的大作中提到】
: 当时不能选team么?自动被分到windows的?
: internet你可以去bing team阿
:
: 是做
: off。
: 256/

m******9
发帖数: 968
4
谢谢分享,很好的面经
m****u
发帖数: 3915
5
晕,我怎么感觉这么难

是做
off。
256/

【在 m*****k 的大作中提到】
: Windows team, recruiter 刚刚打电话过来说,面得不错,但是team觉得我的背景都是做
: internet的,与windows os fundamental & low level不符合。 所以不能给offer。
: 1) 一个monitor, 一共有256×256 pixel, 一个pixel用binary 表示就是1=on, 0=off。
: 用一个一维的int数组表示。 就是说 一个int 32bit, int[] monitor= new int[256/
: 32
: * 256/32]; 比如说 0-30bit都是off,31bit是on,那么第一个int就是1
: (0000...001(base2) =>1(base10) ). Monitor上有一天横线(pixel是on),给定
: start,end 来表示(都是bit index)。再给定一个eraseStartIndex, 和length。要求
: 把从
: eraseStartIndex开始,length长的横线设置成off。

c******f
发帖数: 2144
6
congs
l*****a
发帖数: 14598
7

是做
off。
256/
这个数组大小是interivewer告诉你的,还是你自己的结果?
一个int 表示32个pixel,那应该是256/32 *256吧

【在 m*****k 的大作中提到】
: Windows team, recruiter 刚刚打电话过来说,面得不错,但是team觉得我的背景都是做
: internet的,与windows os fundamental & low level不符合。 所以不能给offer。
: 1) 一个monitor, 一共有256×256 pixel, 一个pixel用binary 表示就是1=on, 0=off。
: 用一个一维的int数组表示。 就是说 一个int 32bit, int[] monitor= new int[256/
: 32
: * 256/32]; 比如说 0-30bit都是off,31bit是on,那么第一个int就是1
: (0000...001(base2) =>1(base10) ). Monitor上有一天横线(pixel是on),给定
: start,end 来表示(都是bit index)。再给定一个eraseStartIndex, 和length。要求
: 把从
: eraseStartIndex开始,length长的横线设置成off。

r**u
发帖数: 1567
8
1) 你的一维array size算得不对吧。应该是256*256/(32bits/int)
如果给的start, end, eraseStart, 都是一维array的index,
就要换算一下在哪个int里,然后set off行了吧,像bitmap operation.
如果给的是2D array的index, 换算麻烦点。

是做
off。
256/

【在 m*****k 的大作中提到】
: Windows team, recruiter 刚刚打电话过来说,面得不错,但是team觉得我的背景都是做
: internet的,与windows os fundamental & low level不符合。 所以不能给offer。
: 1) 一个monitor, 一共有256×256 pixel, 一个pixel用binary 表示就是1=on, 0=off。
: 用一个一维的int数组表示。 就是说 一个int 32bit, int[] monitor= new int[256/
: 32
: * 256/32]; 比如说 0-30bit都是off,31bit是on,那么第一个int就是1
: (0000...001(base2) =>1(base10) ). Monitor上有一天横线(pixel是on),给定
: start,end 来表示(都是bit index)。再给定一个eraseStartIndex, 和length。要求
: 把从
: eraseStartIndex开始,length长的横线设置成off。

y*c
发帖数: 904
9
对啊,size应该是256/32 * 256
B*****t
发帖数: 335
10
感觉recruiter像是在找借口。难道面试前他们没看过你的resume?

景都是做
offer。
0=off。
int[256/
on),给定
length。要求

【在 m*****k 的大作中提到】
: Windows team, recruiter 刚刚打电话过来说,面得不错,但是team觉得我的背景都是做
: internet的,与windows os fundamental & low level不符合。 所以不能给offer。
: 1) 一个monitor, 一共有256×256 pixel, 一个pixel用binary 表示就是1=on, 0=off。
: 用一个一维的int数组表示。 就是说 一个int 32bit, int[] monitor= new int[256/
: 32
: * 256/32]; 比如说 0-30bit都是off,31bit是on,那么第一个int就是1
: (0000...001(base2) =>1(base10) ). Monitor上有一天横线(pixel是on),给定
: start,end 来表示(都是bit index)。再给定一个eraseStartIndex, 和length。要求
: 把从
: eraseStartIndex开始,length长的横线设置成off。

1 (共1页)
进入JobHunting版参与讨论
相关主题
LinkedIn家电面面经问一道数据结构题
[题已更新/求到F继续M]G onsite悲剧了,求M,F的refer行么My Microsoft Interview Questions
good way to solve this problem?问一个古老的问题
请教 rotate the imageSmallest Rectangle Enclosing Black Pixels
不太明白 pixel 谁能说说图形学的画图?MS onsite interview
问一道算法题max length of subsequence string matching subs微软第一轮电面
请教G的一道题,觉得有点难……面试题:transpose a matrix in place
Offer求建议, 'at-will' 常见吗,是不是很不好呢?贡献一个MS onsite面试题
相关话题的讨论汇总
话题: 256话题: int话题: off话题: pixel