由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Data scientist / Machine Learning Engineer 相关面试题
相关主题
某大公司面试题Amazon面试题请教
Pinterest 电话+onsite数据科学方向面经[合集] 微软面试题一道
看一道面试题大家看一下这道google面试题
yahoo面试题请问驿道面试题
问个面试题问几道面试题
请教一个面试题问个google面试题
Google 面试题 一道问个google面试题
问一个面试题问一道google面试题
相关话题的讨论汇总
话题: what话题: given话题: data话题: microsoft话题: mark
进入JobHunting版参与讨论
1 (共1页)
I*******x
发帖数: 20
1
去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
Yelp, Pinterest,
Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
同学们。
题目写的简略,请大家见谅
====================
1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
get 1 tail and 5 head. Determine whether it’s fair or not. What’s your
confidence value?
2. Given Amazon data, how to predict which users are going to be top
shoppers in this holiday season.
3. Which regression methods are you familiar? How to evaluate regression
result?
4. Write down the formula for logistic regression. How to determine the
coefficients given the data?
5. How do you evaluate regression?
For example, in this particular case:
item click-through-rate predicted rate
1 0.04 0.06
2 0.68 0.78
3 0.27 0.19
4 0.52 0.57

6. What’s the formula for SVM? What is decision boundary?
7. A field with unknown number of rabbits. Catch 100 rabbits and put a label
on each of them. A few days later, catch 300 rabbits and found 60 with
labels. Estimate how many rabbits are there?
8. Given 10 coins with 1 unfair coin and 9 fair coins. The unfair coin has &
#8532; prob. to be head. Now random select 1 coin and throw it 3 times. You
observe head, head, tail. What’s the probability that the selected coin is
the unfair one?
9. What’s the formula for Naive Bayesian classifier? What’s the assumption
in the formula? What kind of data is Naive Bayesian good at? What is not?
10. What is the real distribution of click-through rate of items? If you
want to build a predictor/classifier for this data, how do you do it? How do
you divide the data?
11. You have a stream of data coming in, in the format as the following:
item_id, views, clicks, time
1 100 10 2013-11-28
1 1000 350 2013-11-29
1 200 14 2013-11-30
2 127 13 2013-12-1

The same id are consecutive.
Click through rate = clicks / views.
On every day, I want to output the item id when its click through rate is
larger than a given threshold.
For example, at day 1, item 1’s rate is 10/100=10%, day2, its (10+350)/(100
+1000)=0.32. day3 it is (10+350+14)/(100+1000+200)=0.28.
If my threshold is 0.3, then at day 1, I don’t output. On day2 I output. On
day3, I don’t output.
11. Given a dictionary and a string. Write a function, if every word is in
the dictionary return true, otherwise return false.
12. Generate all the permutation of a string.
For example, abc, acb, cba, …
13. We want to add a new feature to our product. How to determine if people
like it?
A/B testing. How to do A/B testing? How many ways? pros and cons?
14. 44.3% vs 47.2% is it significant?
15. Design a function to calculate people’s interest to a place against the
distance to the place.
16. How to encourage people to write more reviews on Yelp? How to determine
who are likely to write reviews? How to increase the registration rate of
Yelp? What features to add for a better Yelp app? We are expanding to other
countries. Which country we should enter first?
17. What’s the difference between classification and regression?
18. Can you explain how decision tree works? How to build a decision tree
from data?
19. What is regularization in regression? Why do regularization? How to do
regularization?
20. What is gradient descent? stochastic gradient descent?
21. We have a database of . When user
inputs a product name, how to return results fast?
22. If user gives a budget value, how to find the most expensive product
under budget? Assume the data fits in memory. What data structure, or
algorithm you use to find the product quickly? Write the program for it.
23. Given yelp data, how to find top 10 restaurants in America?
24. Given a large file that we don’t know how many lines are there. It
doesn’t fit into memory. We want to sample K lines from the file uniformly.
Write a program for it.
25. How to determine if one advertisement is performing better than the
other?
26. How to evaluate classification result? What if the results are in
probability mode?
If I want to build a classifier, but the data is very unbalanced. I have a
few positive samples but a lot of negative samples. What should I do?
27. Given a lot of data, I want to random sample 1% of them. How to do it
efficiently?
28. When a new user signs up Pinterest, we want to know its interests. We
decide to show the user a few pins, 2 pins at a time. Let the user choose
which pin s/he likes. After the user clicks on one of the 2, we select
another 2 pins.
Question: how to design the system and select the pins so that we can
achieve our goal?
29. Write a function to compute sqrt(X). Write a function to compute pow(x,
n) [square root and power)
30. Given a matrix
a b c d
e f g h
i j k l
Print it in this order:
a f k
b g l
c h
d
e j
i
31. Given a matrix and an array of words, find if the words are in the
matrix. You can search the
matrix in all directions: from left to right, right to left, up to down,
down to up, or diagonally.
For example
w o r x b
h e l o v
i n d e m
then the word “world” is in the matrix.
32. Given a coordinates, and two points A and B. How many ways to go from A
to B? You can only move up or right.
For example, from (1, 1) to (5, 7), one possible way is 1,1 -> 2, 1… 5, 1 -
> 5,2 -> ..5, 7
33. In a city where there are only vertical and horizontal streets. There
are people on the cross point. These people want to meet. Please find a
cross point to minimize the cost for all the people to move.
34. Design a job search ranking algorithm on glassdoor
35. How to identify review spam?
36. Glassdoor has this kind of data about a job : (position, company,
location, salary). For example (Software Engineer, Microsoft, Seattle, $125K
). For some records, all four entires are available. But for others, the
salary is missing. Design a way to estimate salary for those records.
37. When to send emails to users in a day can get maximum click through rate?
38. Youtube has video play log like this:
Video ID, time
vid1 t1
vid2 t2
... ...
The log is super large.
Find out the top 10 played videos on youtube in a given week.
39. Write a program to copy a graph
40. A bank has this access log:
IP address, time
ip1 t1
ip2 t2
... ...
If one ip accessed K times within m seconds, it may be an attack.
Given the log, identify all IPs that may cause attack.
t*****t
发帖数: 139
2
Thanks a lot!!
C*******n
发帖数: 193
3
lz 什么背景?cs phd?
I*******x
发帖数: 20
4
Forgot to mention it. I'm a CS PhD specialized in data mining. Some intern
experiences and some publications in top conferences.
j*******t
发帖数: 223
5
mark~
C**********r
发帖数: 8189
6
那么多what is the formula of 吧啦吧啦吧啦……
马克下,以后俺不会少见多怪了。请问lz那些公式都允许你推导吗?
I*******x
发帖数: 20
7
what is the formula 之类的问题都允许推导,而且个人觉得能推导出来比直接背出来
更体现水平。这些问题都不难,面试之前过一遍上课的ppt就好了 :)

【在 C**********r 的大作中提到】
: 那么多what is the formula of 吧啦吧啦吧啦……
: 马克下,以后俺不会少见多怪了。请问lz那些公式都允许你推导吗?

p***0
发帖数: 233
8
好贴mark!
LZ你有没有面过uber和airbnb的data scientist?
C**********r
发帖数: 8189
9

好。非常感谢lz分享!

【在 I*******x 的大作中提到】
: what is the formula 之类的问题都允许推导,而且个人觉得能推导出来比直接背出来
: 更体现水平。这些问题都不难,面试之前过一遍上课的ppt就好了 :)

e*********5
发帖数: 137
10
mark!谢谢牛人!
相关主题
请教一个面试题Amazon面试题请教
Google 面试题 一道[合集] 微软面试题一道
问一个面试题大家看一下这道google面试题
进入JobHunting版参与讨论
d********0
发帖数: 202
11
mark,真心大牛啊
t*******e
发帖数: 274
12
mark
f*****y
发帖数: 822
13
Mark!!
膜拜大牛!!
f***a
发帖数: 7286
14
niu

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

f***a
发帖数: 7286
15
niu

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

R****E
发帖数: 391
16
多谢分享,收藏了

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

m*********1
发帖数: 204
17
能不能给一点答案提示?
好多题完全不知道怎么做
r*********o
发帖数: 490
18
mark thanks
w******k
发帖数: 299
19
Mark
w*****u
发帖数: 102
20
多谢分享!

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

相关主题
请问驿道面试题问个google面试题
问几道面试题问一道google面试题
问个google面试题一道面试题
进入JobHunting版参与讨论
m*****a
发帖数: 64
21
狂赞楼主!mark
感觉题目还是偏统计多一些。楼主可以简单说说编程方面需要掌握哪些工具/语言吗
谢谢

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

u****g
发帖数: 402
22
Mark

去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这........

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

f*******y
发帖数: 267
23
mark!
S******e
发帖数: 132
24
马克下,谢楼主分享
t******5
发帖数: 47
25
楼主好人,好久之前就在某论坛里问类似的问题,最后也没人回答。。。另外想问下楼
主编程方面都怎么考的,和一般码工一样要刷leetcode考算法之类的题吗,machine
learning 这个方面更多用哪个语言呢?
f*******2
发帖数: 717
26
mark
s****y
发帖数: 503
27
mark
w**e
发帖数: 28
28
马克 多谢楼主

去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这........

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

a****o
发帖数: 488
29
多谢
N******n
发帖数: 3003
30
marked
相关主题
Find shortest substring that is only occurring once. in Given String(Medallia面试题)Pinterest 电话+onsite数据科学方向面经
有人整理过FB的面试题么看一道面试题
某大公司面试题yahoo面试题
进入JobHunting版参与讨论
I*******x
发帖数: 20
31
多谢大家,我不是什么牛人,多几个面试有什么好牛的。只是这些东西能帮助大家提高
水平就很好了。对于各位在上面提出的问题,这里统一回复一下。
1. 如果哪些题目有问题,欢迎跟贴讨论。题目比较多,就不一一分析给提示了。
2. Machine learning也是编程写算法,用什么语言应该都和其他的职位类似。但是确
实python和java有不少ML的package现成的。不过也有大牛一直用c++的。这个没有定数
,看个人喜好。
3. 基础知识怎么准备的问题,不是这个方向的同学,还在学校的可以上上课,在公司
的可以参与到相关的项目里。对于是这个方向的同学来说,那些面试题真的不难。
4. 编程要刷题吗?答案:要。leetcode什么的该做还是要做。真正的machine
learning的职位对编程要求不比software engineer低,而且加了machine learning方
向的问题。应该对人整体要求更高才是。不过不同公司或者不同的组对data scientist
的定义不同,有的不考编程,只是问问sql,但是那些职位我没申请过,不好给建议。
z***m
发帖数: 1602
32
谢谢楼主分享
o*******0
发帖数: 699
33
niu
M********l
发帖数: 22
34
Mark赞啊!
j****a
发帖数: 1277
35
Nice!
b********y
发帖数: 559
36
多谢分享!
M*****c
发帖数: 2753
37
感谢分享,有没有可能分享下思路?

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

d******k
发帖数: 141
38
多谢分享!!

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

s*******0
发帖数: 23
39
楼主好人一生平安阿!
c********r
发帖数: 107
40
mark
相关主题
yahoo面试题Google 面试题 一道
问个面试题问一个面试题
请教一个面试题Amazon面试题请教
进入JobHunting版参与讨论
x**********5
发帖数: 161
41
Mark~楼主真牛人~
g********s
发帖数: 87
42
Thanks a lot, Mark!
g*****t
发帖数: 36
43
多谢分享,收藏!
s**********r
发帖数: 88
44
已经收藏的,是非常不错的一手面试经验。肯定很有用。
d****y
发帖数: 58
45
mark
W*********y
发帖数: 481
46
赞,多谢分享
f******e
发帖数: 91
47
mark
b****f
发帖数: 138
48
Mark
f*******k
发帖数: 89
49
mark
r*g
发帖数: 186
50
好题, 让我每天做一点

Microsoft,
label
&
You
is
assumption
do
100
On
people
the
determine
other
user
uniformly.
,
A
-
125K
rate?

【在 I*******x 的大作中提到】
: 多谢大家,我不是什么牛人,多几个面试有什么好牛的。只是这些东西能帮助大家提高
: 水平就很好了。对于各位在上面提出的问题,这里统一回复一下。
: 1. 如果哪些题目有问题,欢迎跟贴讨论。题目比较多,就不一一分析给提示了。
: 2. Machine learning也是编程写算法,用什么语言应该都和其他的职位类似。但是确
: 实python和java有不少ML的package现成的。不过也有大牛一直用c++的。这个没有定数
: ,看个人喜好。
: 3. 基础知识怎么准备的问题,不是这个方向的同学,还在学校的可以上上课,在公司
: 的可以参与到相关的项目里。对于是这个方向的同学来说,那些面试题真的不难。
: 4. 编程要刷题吗?答案:要。leetcode什么的该做还是要做。真正的machine
: learning的职位对编程要求不比software engineer低,而且加了machine learning方

相关主题
[合集] 微软面试题一道问几道面试题
大家看一下这道google面试题问个google面试题
请问驿道面试题问个google面试题
进入JobHunting版参与讨论
z***e
发帖数: 209
51
收藏.感谢楼主.
b******y
发帖数: 168
52
28. When a new user signs up Pinterest, we want to know its interests. We
decide to show the user a few pins, 2 pins at a time. Let the user choose
which pin s/he likes. After the user clicks on one of the 2, we select
another 2 pins.
Question: how to design the system and select the pins so that we can
achieve our goal?
这个题有意思,不知道怎么做呢?
x*****0
发帖数: 452
53
mark
x*****0
发帖数: 452
54
楼主,请问
Given yelp data, how to find top 10 restaurants in America?
这题怎么答呢,有什么思路吗

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

w**d
发帖数: 72
55
mark
k**y
发帖数: 28
56
Mark

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

h**********a
发帖数: 2
57
Hi,
Thanks for your post. I am PhD student in HKU, I am looking for a data
mining related job in US now. I think I have a lot of things to learn from
you. Can I have your Wechat or QQ?
Thanks a lot.
Best regard,
Min Yang

【在 I*******x 的大作中提到】
: Forgot to mention it. I'm a CS PhD specialized in data mining. Some intern
: experiences and some publications in top conferences.

I*******x
发帖数: 20
58
去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
Yelp, Pinterest,
Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
同学们。
题目写的简略,请大家见谅
====================
1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
get 1 tail and 5 head. Determine whether it’s fair or not. What’s your
confidence value?
2. Given Amazon data, how to predict which users are going to be top
shoppers in this holiday season.
3. Which regression methods are you familiar? How to evaluate regression
result?
4. Write down the formula for logistic regression. How to determine the
coefficients given the data?
5. How do you evaluate regression?
For example, in this particular case:
item click-through-rate predicted rate
1 0.04 0.06
2 0.68 0.78
3 0.27 0.19
4 0.52 0.57

6. What’s the formula for SVM? What is decision boundary?
7. A field with unknown number of rabbits. Catch 100 rabbits and put a label
on each of them. A few days later, catch 300 rabbits and found 60 with
labels. Estimate how many rabbits are there?
8. Given 10 coins with 1 unfair coin and 9 fair coins. The unfair coin has &
#8532; prob. to be head. Now random select 1 coin and throw it 3 times. You
observe head, head, tail. What’s the probability that the selected coin is
the unfair one?
9. What’s the formula for Naive Bayesian classifier? What’s the assumption
in the formula? What kind of data is Naive Bayesian good at? What is not?
10. What is the real distribution of click-through rate of items? If you
want to build a predictor/classifier for this data, how do you do it? How do
you divide the data?
11. You have a stream of data coming in, in the format as the following:
item_id, views, clicks, time
1 100 10 2013-11-28
1 1000 350 2013-11-29
1 200 14 2013-11-30
2 127 13 2013-12-1

The same id are consecutive.
Click through rate = clicks / views.
On every day, I want to output the item id when its click through rate is
larger than a given threshold.
For example, at day 1, item 1’s rate is 10/100=10%, day2, its (10+350)/(100
+1000)=0.32. day3 it is (10+350+14)/(100+1000+200)=0.28.
If my threshold is 0.3, then at day 1, I don’t output. On day2 I output. On
day3, I don’t output.
11. Given a dictionary and a string. Write a function, if every word is in
the dictionary return true, otherwise return false.
12. Generate all the permutation of a string.
For example, abc, acb, cba, …
13. We want to add a new feature to our product. How to determine if people
like it?
A/B testing. How to do A/B testing? How many ways? pros and cons?
14. 44.3% vs 47.2% is it significant?
15. Design a function to calculate people’s interest to a place against the
distance to the place.
16. How to encourage people to write more reviews on Yelp? How to determine
who are likely to write reviews? How to increase the registration rate of
Yelp? What features to add for a better Yelp app? We are expanding to other
countries. Which country we should enter first?
17. What’s the difference between classification and regression?
18. Can you explain how decision tree works? How to build a decision tree
from data?
19. What is regularization in regression? Why do regularization? How to do
regularization?
20. What is gradient descent? stochastic gradient descent?
21. We have a database of . When user
inputs a product name, how to return results fast?
22. If user gives a budget value, how to find the most expensive product
under budget? Assume the data fits in memory. What data structure, or
algorithm you use to find the product quickly? Write the program for it.
23. Given yelp data, how to find top 10 restaurants in America?
24. Given a large file that we don’t know how many lines are there. It
doesn’t fit into memory. We want to sample K lines from the file uniformly.
Write a program for it.
25. How to determine if one advertisement is performing better than the
other?
26. How to evaluate classification result? What if the results are in
probability mode?
If I want to build a classifier, but the data is very unbalanced. I have a
few positive samples but a lot of negative samples. What should I do?
27. Given a lot of data, I want to random sample 1% of them. How to do it
efficiently?
28. When a new user signs up Pinterest, we want to know its interests. We
decide to show the user a few pins, 2 pins at a time. Let the user choose
which pin s/he likes. After the user clicks on one of the 2, we select
another 2 pins.
Question: how to design the system and select the pins so that we can
achieve our goal?
29. Write a function to compute sqrt(X). Write a function to compute pow(x,
n) [square root and power)
30. Given a matrix
a b c d
e f g h
i j k l
Print it in this order:
a f k
b g l
c h
d
e j
i
31. Given a matrix and an array of words, find if the words are in the
matrix. You can search the
matrix in all directions: from left to right, right to left, up to down,
down to up, or diagonally.
For example
w o r x b
h e l o v
i n d e m
then the word “world” is in the matrix.
32. Given a coordinates, and two points A and B. How many ways to go from A
to B? You can only move up or right.
For example, from (1, 1) to (5, 7), one possible way is 1,1 -> 2, 1… 5, 1 -
> 5,2 -> ..5, 7
33. In a city where there are only vertical and horizontal streets. There
are people on the cross point. These people want to meet. Please find a
cross point to minimize the cost for all the people to move.
34. Design a job search ranking algorithm on glassdoor
35. How to identify review spam?
36. Glassdoor has this kind of data about a job : (position, company,
location, salary). For example (Software Engineer, Microsoft, Seattle, $125K
). For some records, all four entires are available. But for others, the
salary is missing. Design a way to estimate salary for those records.
37. When to send emails to users in a day can get maximum click through rate?
38. Youtube has video play log like this:
Video ID, time
vid1 t1
vid2 t2
... ...
The log is super large.
Find out the top 10 played videos on youtube in a given week.
39. Write a program to copy a graph
40. A bank has this access log:
IP address, time
ip1 t1
ip2 t2
... ...
If one ip accessed K times within m seconds, it may be an attack.
Given the log, identify all IPs that may cause attack.
t*****t
发帖数: 139
59
Thanks a lot!!
C*******n
发帖数: 193
60
lz 什么背景?cs phd?
相关主题
问一道google面试题有人整理过FB的面试题么
一道面试题某大公司面试题
Find shortest substring that is only occurring once. in Given String(Medallia面试题)Pinterest 电话+onsite数据科学方向面经
进入JobHunting版参与讨论
I*******x
发帖数: 20
61
Forgot to mention it. I'm a CS PhD specialized in data mining. Some intern
experiences and some publications in top conferences.
j*******t
发帖数: 223
62
mark~
C**********r
发帖数: 8189
63
那么多what is the formula of 吧啦吧啦吧啦……
马克下,以后俺不会少见多怪了。请问lz那些公式都允许你推导吗?
I*******x
发帖数: 20
64
what is the formula 之类的问题都允许推导,而且个人觉得能推导出来比直接背出来
更体现水平。这些问题都不难,面试之前过一遍上课的ppt就好了 :)

【在 C**********r 的大作中提到】
: 那么多what is the formula of 吧啦吧啦吧啦……
: 马克下,以后俺不会少见多怪了。请问lz那些公式都允许你推导吗?

p***0
发帖数: 233
65
好贴mark!
LZ你有没有面过uber和airbnb的data scientist?
C**********r
发帖数: 8189
66

好。非常感谢lz分享!

【在 I*******x 的大作中提到】
: what is the formula 之类的问题都允许推导,而且个人觉得能推导出来比直接背出来
: 更体现水平。这些问题都不难,面试之前过一遍上课的ppt就好了 :)

e*********5
发帖数: 137
67
mark!谢谢牛人!
d********0
发帖数: 202
68
mark,真心大牛啊
t*******e
发帖数: 274
69
mark
f*****y
发帖数: 822
70
Mark!!
膜拜大牛!!
相关主题
Pinterest 电话+onsite数据科学方向面经问个面试题
看一道面试题请教一个面试题
yahoo面试题Google 面试题 一道
进入JobHunting版参与讨论
f***a
发帖数: 7286
71
niu

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

f***a
发帖数: 7286
72
niu

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

m*********1
发帖数: 204
73
能不能给一点答案提示?
好多题完全不知道怎么做
r*********o
发帖数: 490
74
mark thanks
w******k
发帖数: 299
75
Mark
w*****u
发帖数: 102
76
多谢分享!

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

m*****a
发帖数: 64
77
狂赞楼主!mark
感觉题目还是偏统计多一些。楼主可以简单说说编程方面需要掌握哪些工具/语言吗
谢谢

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

u****g
发帖数: 402
78
Mark

去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这........

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

f*******y
发帖数: 267
79
mark!
S******e
发帖数: 132
80
马克下,谢楼主分享
相关主题
问一个面试题大家看一下这道google面试题
Amazon面试题请教请问驿道面试题
[合集] 微软面试题一道问几道面试题
进入JobHunting版参与讨论
t******5
发帖数: 47
81
楼主好人,好久之前就在某论坛里问类似的问题,最后也没人回答。。。另外想问下楼
主编程方面都怎么考的,和一般码工一样要刷leetcode考算法之类的题吗,machine
learning 这个方面更多用哪个语言呢?
f*******2
发帖数: 717
82
mark
s****y
发帖数: 503
83
mark
w**e
发帖数: 28
84
马克 多谢楼主

去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这........

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

a****o
发帖数: 488
85
多谢
N******n
发帖数: 3003
86
marked
I*******x
发帖数: 20
87
多谢大家,我不是什么牛人,多几个面试有什么好牛的。只是这些东西能帮助大家提高
水平就很好了。对于各位在上面提出的问题,这里统一回复一下。
1. 如果哪些题目有问题,欢迎跟贴讨论。题目比较多,就不一一分析给提示了。
2. Machine learning也是编程写算法,用什么语言应该都和其他的职位类似。但是确
实python和java有不少ML的package现成的。不过也有大牛一直用c++的。这个没有定数
,看个人喜好。
3. 基础知识怎么准备的问题,不是这个方向的同学,还在学校的可以上上课,在公司
的可以参与到相关的项目里。对于是这个方向的同学来说,那些面试题真的不难。
4. 编程要刷题吗?答案:要。leetcode什么的该做还是要做。真正的machine
learning的职位对编程要求不比software engineer低,而且加了machine learning方
向的问题。应该对人整体要求更高才是。不过不同公司或者不同的组对data scientist
的定义不同,有的不考编程,只是问问sql,但是那些职位我没申请过,不好给建议。
z***m
发帖数: 1602
88
谢谢楼主分享
o*******0
发帖数: 699
89
niu
M********l
发帖数: 22
90
Mark赞啊!
相关主题
问个google面试题一道面试题
问个google面试题Find shortest substring that is only occurring once. in Given String(Medallia面试题)
问一道google面试题有人整理过FB的面试题么
进入JobHunting版参与讨论
j****a
发帖数: 1277
91
Nice!
b********y
发帖数: 559
92
多谢分享!
M*****c
发帖数: 2753
93
感谢分享,有没有可能分享下思路?

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

d******k
发帖数: 141
94
多谢分享!!

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

s*******0
发帖数: 23
95
楼主好人一生平安阿!
c********r
发帖数: 107
96
mark
x**********5
发帖数: 161
97
Mark~楼主真牛人~
g********s
发帖数: 87
98
Thanks a lot, Mark!
g*****t
发帖数: 36
99
多谢分享,收藏!
s**********r
发帖数: 88
100
已经收藏的,是非常不错的一手面试经验。肯定很有用。
相关主题
某大公司面试题yahoo面试题
Pinterest 电话+onsite数据科学方向面经问个面试题
看一道面试题请教一个面试题
进入JobHunting版参与讨论
d****y
发帖数: 58
101
mark
W*********y
发帖数: 481
102
赞,多谢分享
f******e
发帖数: 91
103
mark
b****f
发帖数: 138
104
Mark
f*******k
发帖数: 89
105
mark
r*g
发帖数: 186
106
好题, 让我每天做一点

Microsoft,
label
&
You
is
assumption
do
100
On
people
the
determine
other
user
uniformly.
,
A
-
125K
rate?

【在 I*******x 的大作中提到】
: 多谢大家,我不是什么牛人,多几个面试有什么好牛的。只是这些东西能帮助大家提高
: 水平就很好了。对于各位在上面提出的问题,这里统一回复一下。
: 1. 如果哪些题目有问题,欢迎跟贴讨论。题目比较多,就不一一分析给提示了。
: 2. Machine learning也是编程写算法,用什么语言应该都和其他的职位类似。但是确
: 实python和java有不少ML的package现成的。不过也有大牛一直用c++的。这个没有定数
: ,看个人喜好。
: 3. 基础知识怎么准备的问题,不是这个方向的同学,还在学校的可以上上课,在公司
: 的可以参与到相关的项目里。对于是这个方向的同学来说,那些面试题真的不难。
: 4. 编程要刷题吗?答案:要。leetcode什么的该做还是要做。真正的machine
: learning的职位对编程要求不比software engineer低,而且加了machine learning方

z***e
发帖数: 209
107
收藏.感谢楼主.
b******y
发帖数: 168
108
28. When a new user signs up Pinterest, we want to know its interests. We
decide to show the user a few pins, 2 pins at a time. Let the user choose
which pin s/he likes. After the user clicks on one of the 2, we select
another 2 pins.
Question: how to design the system and select the pins so that we can
achieve our goal?
这个题有意思,不知道怎么做呢?
x*****0
发帖数: 452
109
mark
x*****0
发帖数: 452
110
楼主,请问
Given yelp data, how to find top 10 restaurants in America?
这题怎么答呢,有什么思路吗

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

相关主题
请教一个面试题Amazon面试题请教
Google 面试题 一道[合集] 微软面试题一道
问一个面试题大家看一下这道google面试题
进入JobHunting版参与讨论
w**d
发帖数: 72
111
mark
k**y
发帖数: 28
112
Mark

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

h**********a
发帖数: 2
113
Hi,
Thanks for your post. I am PhD student in HKU, I am looking for a data
mining related job in US now. I think I have a lot of things to learn from
you. Can I have your Wechat or QQ?
Thanks a lot.
Best regard,
Min Yang

【在 I*******x 的大作中提到】
: Forgot to mention it. I'm a CS PhD specialized in data mining. Some intern
: experiences and some publications in top conferences.

E******g
发帖数: 204
114
好文!
Mark!

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

c*********l
发帖数: 926
115
都是统计加regression的问题。被CS强奸成machine learning了。

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

a***u
发帖数: 383
116
墙贴留名
T*****n
发帖数: 82
117
四个字牛!
M***6
发帖数: 895
118
不能更赞!感谢楼主!!
k**********i
发帖数: 36
119
大牛.
E******g
发帖数: 204
120
好文!
Mark!

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

相关主题
请问驿道面试题问个google面试题
问几道面试题问一道google面试题
问个google面试题一道面试题
进入JobHunting版参与讨论
c*********l
发帖数: 926
121
都是统计加regression的问题。被CS强奸成machine learning了。

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

a***u
发帖数: 383
122
墙贴留名
T*****n
发帖数: 82
123
四个字牛!
M***6
发帖数: 895
124
不能更赞!感谢楼主!!
k**********i
发帖数: 36
125
大牛.
x****q
发帖数: 101
126
终于找到一点依靠了,
感谢楼主
你就是神!
d***e
发帖数: 193
127
mark璋z鍒嗕韩
A*****y
发帖数: 105
128
马克,多谢楼主分享
p*****x
发帖数: 58
129
Mark
[在 ISphoenix (beta3) 的大作中提到:]

:去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
:...........
a******i
发帖数: 29
130
thanks
相关主题
Find shortest substring that is only occurring once. in Given String(Medallia面试题)Pinterest 电话+onsite数据科学方向面经
有人整理过FB的面试题么看一道面试题
某大公司面试题yahoo面试题
进入JobHunting版参与讨论
D*********e
发帖数: 6
131
markmark
p********e
发帖数: 170
132
thanks
x****q
发帖数: 101
133
终于找到一点依靠了,
感谢楼主
你就是神!
d***e
发帖数: 193
134
mark璋z鍒嗕韩
A*****y
发帖数: 105
135
马克,多谢楼主分享
p*****x
发帖数: 58
136
Mark
[在 ISphoenix (beta3) 的大作中提到:]

:去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
:...........
a******i
发帖数: 29
137
thanks
D*********e
发帖数: 6
138
markmark
p********e
发帖数: 170
139
thanks
r*****9
发帖数: 75
140
慢慢看大牛们 华山论剑

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

相关主题
yahoo面试题Google 面试题 一道
问个面试题问一个面试题
请教一个面试题Amazon面试题请教
进入JobHunting版参与讨论
i******t
发帖数: 22541
141
都没人讨论答案 光有题没用阿
w*****t
发帖数: 190
142
马克,大赞LZ
r*****9
发帖数: 75
143
慢慢看大牛们 华山论剑

Microsoft,

【在 I*******x 的大作中提到】
: 去年我找工作的时候发现板上针对data scientist,machine learning engineer面试
: 题总结很少,所以尽量申请了很多公司面试相关职位,想看看行业里这个方向都在问什
: 么。有幸去过不少地方面试,现在把那些题目整理整理(全部来自Amazon, Microsoft,
: Yelp, Pinterest,
: Square, Google, Glassdoor, Groupon的电面和onsite),希望能帮助在找相关工作的
: 同学们。
: 题目写的简略,请大家见谅
: ====================
: 1. Given a coin you don’t know it’s fair or unfair. Throw it 6 times and
: get 1 tail and 5 head. Determine whether it’s fair or not. What’s your

i******t
发帖数: 22541
144
都没人讨论答案 光有题没用阿
w*****t
发帖数: 190
145
马克,大赞LZ
b**********i
发帖数: 3
146
mark!感谢
1 (共1页)
进入JobHunting版参与讨论
相关主题
问一道google面试题问个面试题
一道面试题请教一个面试题
Find shortest substring that is only occurring once. in Given String(Medallia面试题)Google 面试题 一道
有人整理过FB的面试题么问一个面试题
某大公司面试题Amazon面试题请教
Pinterest 电话+onsite数据科学方向面经[合集] 微软面试题一道
看一道面试题大家看一下这道google面试题
yahoo面试题请问驿道面试题
相关话题的讨论汇总
话题: what话题: given话题: data话题: microsoft话题: mark