由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 也来贡献一个Bloomberg的店面
相关主题
今天G家电面的一道题c++ 问题
说说某著名软件公司的onsite面试为什么这里的面试题和carrercup上的不一样呢
一道微软面试题写程序时的一个小问题?
贡献几道CS电面题问个amazon店面题
Help, Algorithms questionsfind k missing numbers in range [0, N].
facebook面筋a电面面经
Google店面find index of an element in sorted array
how to access a const char array in a functionC的店面
相关话题的讨论汇总
话题: balls话题: red话题: yellow话题: blue话题: 27
进入JobHunting版参与讨论
1 (共1页)
e**e
发帖数: 237
1
只问了三个大问题,因为中间电话断了一次,耽误了时间,而且第一道题没答出来,
555
1. Array of capital letters (A-Z),how to find the first non-repeating
letter in this array. For example, an array of CBCWB. How to print out "W"?
这个估计大家都会吧?我没有答出来,sigh
2.Probabilities. 3 colors of balls, blue, red and yellow, there are a large
number of each color of balls which are distributed evenly. Ask what's the
probability to get 3 balls which are all red color? What's probability to
get 3 balls which are red, blue and yellow?
3.There is a spread s
r****o
发帖数: 1950
2
第2题是不是两个概率都是1/9?
第3题查min是不是maintain一个max heap,动态更新
查mean怎么弄?

?
large

【在 e**e 的大作中提到】
: 只问了三个大问题,因为中间电话断了一次,耽误了时间,而且第一道题没答出来,
: 555
: 1. Array of capital letters (A-Z),how to find the first non-repeating
: letter in this array. For example, an array of CBCWB. How to print out "W"?
: 这个估计大家都会吧?我没有答出来,sigh
: 2.Probabilities. 3 colors of balls, blue, red and yellow, there are a large
: number of each color of balls which are distributed evenly. Ask what's the
: probability to get 3 balls which are all red color? What's probability to
: get 3 balls which are red, blue and yellow?
: 3.There is a spread s

s*****r
发帖数: 773
3
第二题应该不是吧, 我算的1/27, 2/9, 不知道是否正确

【在 r****o 的大作中提到】
: 第2题是不是两个概率都是1/9?
: 第3题查min是不是maintain一个max heap,动态更新
: 查mean怎么弄?
:
: ?
: large

d**e
发帖数: 6098
4
我觉得都是1/27,因为总数是一个很大的数,
所以概率总是1/3,取三只球都是 1/3 * 1/3 * 1/3 = 1/27
不知对不对

【在 s*****r 的大作中提到】
: 第二题应该不是吧, 我算的1/27, 2/9, 不知道是否正确
r****o
发帖数: 1950
5
对,我觉得应该都是1/27, 我开始算错了。

【在 d**e 的大作中提到】
: 我觉得都是1/27,因为总数是一个很大的数,
: 所以概率总是1/3,取三只球都是 1/3 * 1/3 * 1/3 = 1/27
: 不知对不对

b********a
发帖数: 300
6
第二道题明显是
all red: 1/3 * 1/3 * 1/3 = 1/27
one color each = 1/27 * 3! = 2/9
r****o
发帖数: 1950
7
这个应该是对的,多谢。

【在 b********a 的大作中提到】
: 第二道题明显是
: all red: 1/3 * 1/3 * 1/3 = 1/27
: one color each = 1/27 * 3! = 2/9

s*****r
发帖数: 773
8
第二种情况顺序会变啊

【在 d**e 的大作中提到】
: 我觉得都是1/27,因为总数是一个很大的数,
: 所以概率总是1/3,取三只球都是 1/3 * 1/3 * 1/3 = 1/27
: 不知对不对

d**e
发帖数: 6098
9
看不懂第二个,可以解释一下吗?谢谢

【在 r****o 的大作中提到】
: 这个应该是对的,多谢。
d**e
发帖数: 6098
10
好像明白了,谢谢

【在 s*****r 的大作中提到】
: 第二种情况顺序会变啊
相关主题
facebook面筋c++ 问题
Google店面为什么这里的面试题和carrercup上的不一样呢
how to access a const char array in a function写程序时的一个小问题?
进入JobHunting版参与讨论
c*******n
发帖数: 112
11
if all the balls are picked in one shot, the possibilities are different.
If they are picked one by one, then the above possibility is right
b*******y
发帖数: 239
12
1. Use bit map to record the number of time one char appeared in the
string,
then follow the sequence of string chars, the first one that has value of
1
is the output.
2. 1/27, the second problem need to ask if the sequence of 3 colors
matters,
if not, 2/9, if yes, 1/27
3. Is he asking you to use Excel? since it says it's spreadsheet.
if so, I would say sort the list will get the min and max value
immediately,
and average would be sum()/count(), and updated average will be
((original_
count*orig
e**e
发帖数: 237
13
第一题我也不知道答案,不过对于CS的同学来说应该是很简单的字符串题目吧
第二题是1/27 and 2/9
第三题,我一开始也是用排序。但是后来他说如果不能排序的情况怎么办,那就每次都
把min储存在另外一个cell,然后每输入一个新值就跟这个stored min value比较,这
样就可以不用每次都go through every value而得到min。average同理。
l*******y
发帖数: 1498
14
第二题的2/9是怎么来的呀,谁能详细解释一下,多谢了!
s*********g
发帖数: 153
15
谢谢楼主分享!楼主最后一题还是答得很漂亮的!祝好运!
s*********g
发帖数: 153
16
6种情况:
red blue yellow
red yellow blue
blue red yellow
blue yellow red
yellow red blue
yellow blue red
他们各自出现的概率都是 1/3 * 1/3 * 1/3 = 1/27
6* 1/ 27 = 2/9

【在 l*******y 的大作中提到】
: 第二题的2/9是怎么来的呀,谁能详细解释一下,多谢了!
l*******y
发帖数: 1498
17
多谢解答!

【在 s*********g 的大作中提到】
: 6种情况:
: red blue yellow
: red yellow blue
: blue red yellow
: blue yellow red
: yellow red blue
: yellow blue red
: 他们各自出现的概率都是 1/3 * 1/3 * 1/3 = 1/27
: 6* 1/ 27 = 2/9

w******1
发帖数: 520
18
How to get the average value? What if adding one more new value, how to get
the average again?
1 (共1页)
进入JobHunting版参与讨论
相关主题
C的店面Help, Algorithms questions
leetcode的anagram为什么用char array 做hashmap key就过不了呢?facebook面筋
Google店面为什么考这么简单的题Google店面
Akamai店面一题how to access a const char array in a function
今天G家电面的一道题c++ 问题
说说某著名软件公司的onsite面试为什么这里的面试题和carrercup上的不一样呢
一道微软面试题写程序时的一个小问题?
贡献几道CS电面题问个amazon店面题
相关话题的讨论汇总
话题: balls话题: red话题: yellow话题: blue话题: 27