a******u 发帖数: 66 | 1 明天有个首轮面试,说15分钟。hr得人还特意说,不用准备,either you know or you
don't know.....
太拽了。。。。。 |
g******d 发帖数: 48 | |
J******d 发帖数: 506 | 3 崇拜啊。
啥position, 咋拿到的?
you
【在 a******u 的大作中提到】 : 明天有个首轮面试,说15分钟。hr得人还特意说,不用准备,either you know or you : don't know..... : 太拽了。。。。。
|
a******u 发帖数: 66 | 4 就昨天给她们hr发了个email送了简历和coverletter
是research得position
没想到今天hr就打电话要约interview,还说不是今天就是明天,下个星期不行。。。
感觉一点都没有准备好,都布知道要问什么,哎。。。。。。。 |
t***s 发帖数: 4666 | 5 牛。what's your background?
【在 a******u 的大作中提到】 : 就昨天给她们hr发了个email送了简历和coverletter : 是research得position : 没想到今天hr就打电话要约interview,还说不是今天就是明天,下个星期不行。。。 : 感觉一点都没有准备好,都布知道要问什么,哎。。。。。。。
|
g******d 发帖数: 48 | 6 同问?CS?
【在 t***s 的大作中提到】 : 牛。what's your background?
|
a******u 发帖数: 66 | |
a******u 发帖数: 66 | 8 3 questions asked today:
1. Random walk. Starting from 0, 1/2 probability of +1, 1/2 probability of -
1. What is the expectation after n steps? What is the variance?
2. Given an array of n numbers. Suppose we know it is from N(0,1). How do
you convince yourself it is (or not) N(0,1)?
3. Given an array of n numbers. How to find a subarray of maximum summation? |
a*******1 发帖数: 1554 | 9 Thank you for sharing!
-
summation?
【在 a******u 的大作中提到】 : 3 questions asked today: : 1. Random walk. Starting from 0, 1/2 probability of +1, 1/2 probability of - : 1. What is the expectation after n steps? What is the variance? : 2. Given an array of n numbers. Suppose we know it is from N(0,1). How do : you convince yourself it is (or not) N(0,1)? : 3. Given an array of n numbers. How to find a subarray of maximum summation?
|
k*******d 发帖数: 1340 | 10 第一题就是普通的Random Walk?期望0方差n???
第二题我不会,不过我觉得统计专业的应该学过这些方法吧?求统计大牛解答。我能想
到的土方法就是画出histogram然后看看和pdf fit得怎么样,比如算算square error之
类的。。
第三题在Programming Pearl书上有很详细的解释,最快的是O(n),比较容易想到的是O
(nlogn)的算法,divide-and-conquar
Thanks! |
|
|
t*******y 发帖数: 637 | 11 2 画histogram?
3 kadan
-
summation?
【在 a******u 的大作中提到】 : 3 questions asked today: : 1. Random walk. Starting from 0, 1/2 probability of +1, 1/2 probability of - : 1. What is the expectation after n steps? What is the variance? : 2. Given an array of n numbers. Suppose we know it is from N(0,1). How do : you convince yourself it is (or not) N(0,1)? : 3. Given an array of n numbers. How to find a subarray of maximum summation?
|
w**********y 发帖数: 1691 | 12 2. q-q plot
或者做kolmogorov test |
c********s 发帖数: 11 | 13 求问楼主是哪个学校,phd or master?
谢谢!!! |
k**x 发帖数: 2611 | 14 3.如果没有数是正的,答案就是最大数,subarray就是那一个数。
如果有数是正的,那就找到所有尽量长的,全由正数(可以包括0)的subarray,即
两头外都是负数或者是边界,其中和最大的一个就是答案了。这个扫描一遍就够了。 |
w**********y 发帖数: 1691 | 15 Then, what is ur result for:
1 1 1 1 -1 2
【在 k**x 的大作中提到】 : 3.如果没有数是正的,答案就是最大数,subarray就是那一个数。 : 如果有数是正的,那就找到所有尽量长的,全由正数(可以包括0)的subarray,即 : 两头外都是负数或者是边界,其中和最大的一个就是答案了。这个扫描一遍就够了。
|
L******2 发帖数: 274 | 16 For #3, I think the question is to find the contiguous subarray with maximum
summation. |
z****g 发帖数: 1978 | 17 #3 is a famous CS algorithm question. Using dynamic programming can make the
complexity less than o(n) |
r*********e 发帖数: 80 | 18 #2 use bayesian statistics? |
L******2 发帖数: 274 | 19 Less than O(n)? Would you please give a brief explanation, ziqing? Thanks! |