avatar
拉高出货?# Stock
c*n
1
本来已经接了Amazon的offer,但是还是想来FB看看。觉得campus 好大。
面的很一般,System Design 很差,一个Ninja也很一般。希望渺茫,求大家bless.
1, Jedi, behavioral + projects + one coding (phone number permutation)
2, Ninja, a) k closest points to a given point(quick select).
b) dot product of sparse matrices.
3, pirate, Design Messager. 必挂无疑了。
4, Ninja, a) longest increasing contiguous sequence in an array (
leetcode)
b)longest increasing sequence in an array(sequence does
not need to be contiguous). For instance, 1,2,4,3,2,7,8,9 .. return 1,2,3,7,
8,9. Use DP, 但是让我cut leaves 的时候我一直不得要点,耽误了10分钟。
至此,我所有的面筋都发给版上了。这轮找工作也到一段落了,不管最后去哪,我都不
会后悔。感谢版上的同学发的面筋,希望我可以把火种传递下去。
这次希望渺茫,但求Bless.
avatar
w*k
2
市场上就一个MM?
成千上万个机构,手里都有货
你慢慢搭台,不怕人家乘机先溜?
拿A股的思维来炒美股,先把自己给骗进去了
avatar
r*e
3
4 b还是挺费事的。尤其要求返回数列是很让人头疼。
avatar
z*n
4
不要吵了,下周就知道了。

【在 w****k 的大作中提到】
: 市场上就一个MM?
: 成千上万个机构,手里都有货
: 你慢慢搭台,不怕人家乘机先溜?
: 拿A股的思维来炒美股,先把自己给骗进去了

avatar
y*e
5
jedi, ninja, pirate是facebook的黑话吗。。。
bless lz,我听说面的不够好也有可能加面,到时候好好发挥也可以呀!
avatar
w*k
6
下周就瀑布到0
也不说明这两天的涨是庄家故意拉高来骗人

【在 z****n 的大作中提到】
: 不要吵了,下周就知道了。
avatar
c*n
7
谢谢~~jedi就是manager,混合面试;ninja纯coding. pirate是System Design

【在 y*****e 的大作中提到】
: jedi, ninja, pirate是facebook的黑话吗。。。
: bless lz,我听说面的不够好也有可能加面,到时候好好发挥也可以呀!

avatar
c*n
8
是的,4a 4b都不是sort好的
avatar
y*e
10
a) longest increasing contiguous sequence in a sorted array (
leetcode)
lz, leetcode上有这题咩? 我做过一遍了咋没碰到?只有一个类似的
longest consecutive sequence, 但那个数字是打乱顺序的不是sorted
avatar
c*n
11
那就没有,反正这个超简单,扫一遍就可以了。

【在 y*****e 的大作中提到】
: a) longest increasing contiguous sequence in a sorted array (
: leetcode)
: lz, leetcode上有这题咩? 我做过一遍了咋没碰到?只有一个类似的
: longest consecutive sequence, 但那个数字是打乱顺序的不是sorted

avatar
z*0
12
太难

7,

【在 c******n 的大作中提到】
: 本来已经接了Amazon的offer,但是还是想来FB看看。觉得campus 好大。
: 面的很一般,System Design 很差,一个Ninja也很一般。希望渺茫,求大家bless.
: 1, Jedi, behavioral + projects + one coding (phone number permutation)
: 2, Ninja, a) k closest points to a given point(quick select).
: b) dot product of sparse matrices.
: 3, pirate, Design Messager. 必挂无疑了。
: 4, Ninja, a) longest increasing contiguous sequence in an array (
: leetcode)
: b)longest increasing sequence in an array(sequence does
: not need to be contiguous). For instance, 1,2,4,3,2,7,8,9 .. return 1,2,3,7,

avatar
h*t
13
Dot product of sparse matrices 的面试官是做ML和feed ranking 的吗?我onsite时
也碰到这题,记得问这题前会说到matrix代表user看过的movie,然后问如何recommend?
接着才问如何efficiently compute dot product。
avatar
c*n
14
是国人,做ML的,我开始说用HashMap, map index(非0) 到 value, 他说HashMap太
大.之后我说用List 他说可以,也就这轮还好点。。

【在 h****t 的大作中提到】
: Dot product of sparse matrices 的面试官是做ML和feed ranking 的吗?我onsite时
: 也碰到这题,记得问这题前会说到matrix代表user看过的movie,然后问如何recommend?
: 接着才问如何efficiently compute dot product。

avatar
h*t
15
呃看样子是我理解错了,我当时的面试官是白人,也是ML,问的是efficient
computation of dot product between all rows of a sparse matrix.
avatar
c*n
16
这不是一样的题嘛= =

【在 h****t 的大作中提到】
: 呃看样子是我理解错了,我当时的面试官是白人,也是ML,问的是efficient
: computation of dot product between all rows of a sparse matrix.

avatar
m*u
17
好样的!
Bless!
Good luck!
avatar
z*c
18
用Pair,Map是在定义function signature时讨论怎么存每个点吗?
avatar
c*n
19
A: [0,0,0,5,0,0,2,5]
B: [1,0,0,2,0,4,0,0]
dot product is 10;
我开始想用Map, A: 3->5, 6->2, 7->5, 最后是用 Pair, (3,5),(6,2),(7,5) 好处是
index是sorted,所以两个List一起扫就出来出来了。

【在 z***c 的大作中提到】
: 用Pair,Map是在定义function signature时讨论怎么存每个点吗?
avatar
h*t
21
不一样的。我那个是0-1 binary matrix.
avatar
z*c
23
明白了!bless!
avatar
x*n
24
sparse matrices 咋表示 compressed sparse row or column ? 还是自己随便定义啊

【在 h****t 的大作中提到】
: Dot product of sparse matrices 的面试官是做ML和feed ranking 的吗?我onsite时
: 也碰到这题,记得问这题前会说到matrix代表user看过的movie,然后问如何recommend?
: 接着才问如何efficiently compute dot product。

avatar
h*t
25
自定义
avatar
a*n
26
4b, 要求N方还是NlogN?NlogN那种现场肯定想不出来的。。。
avatar
c*m
27
recommend的方法是指collaborative filtering么?

【在 h****t 的大作中提到】
: Dot product of sparse matrices 的面试官是做ML和feed ranking 的吗?我onsite时
: 也碰到这题,记得问这题前会说到matrix代表user看过的movie,然后问如何recommend?
: 接着才问如何efficiently compute dot product。

avatar
c*m
28
recommend的方法是协同过滤么?

【在 h****t 的大作中提到】
: Dot product of sparse matrices 的面试官是做ML和feed ranking 的吗?我onsite时
: 也碰到这题,记得问这题前会说到matrix代表user看过的movie,然后问如何recommend?
: 接着才问如何efficiently compute dot product。

avatar
c*n
29
我反正只作出了n square 的。

【在 a***n 的大作中提到】
: 4b, 要求N方还是NlogN?NlogN那种现场肯定想不出来的。。。
avatar
h*t
30
是的,不过我面试前可没学过任何关于recommendation system 的信息,只能当场瞎掰
。接着会谈到用dot product算similarity index。

【在 c*****m 的大作中提到】
: recommend的方法是协同过滤么?
avatar
y*e
31
lz你太厉害了。。。当场想出,我还学过一点collab filtering的课,能当场给他们讲
明白我就知足

【在 h****t 的大作中提到】
: 是的,不过我面试前可没学过任何关于recommendation system 的信息,只能当场瞎掰
: 。接着会谈到用dot product算similarity index。

avatar
h*o
32
dot product of sparse matrice 是啥?
avatar
p*6
33
稀疏矩阵的点积. 尼玛考线性代数真没意思

【在 h*********o 的大作中提到】
: dot product of sparse matrice 是啥?
avatar
m*2
34
bless

7,

【在 c******n 的大作中提到】
: 本来已经接了Amazon的offer,但是还是想来FB看看。觉得campus 好大。
: 面的很一般,System Design 很差,一个Ninja也很一般。希望渺茫,求大家bless.
: 1, Jedi, behavioral + projects + one coding (phone number permutation)
: 2, Ninja, a) k closest points to a given point(quick select).
: b) dot product of sparse matrices.
: 3, pirate, Design Messager. 必挂无疑了。
: 4, Ninja, a) longest increasing contiguous sequence in an array (
: leetcode)
: b)longest increasing sequence in an array(sequence does
: not need to be contiguous). For instance, 1,2,4,3,2,7,8,9 .. return 1,2,3,7,

avatar
l*6
35
bless
avatar
r*7
36
bless
这几个单词是专业术语,还是facebook专有?

【在 c******n 的大作中提到】
: 谢谢~~jedi就是manager,混合面试;ninja纯coding. pirate是System Design
avatar
c*n
37
其实主要是考怎么存这个矩阵,然后用起来方便

【在 p****6 的大作中提到】
: 稀疏矩阵的点积. 尼玛考线性代数真没意思
avatar
c*n
38
facebook黑话= =

【在 r****7 的大作中提到】
: bless
: 这几个单词是专业术语,还是facebook专有?

avatar
l*u
39
bless

7,

【在 c******n 的大作中提到】
: 本来已经接了Amazon的offer,但是还是想来FB看看。觉得campus 好大。
: 面的很一般,System Design 很差,一个Ninja也很一般。希望渺茫,求大家bless.
: 1, Jedi, behavioral + projects + one coding (phone number permutation)
: 2, Ninja, a) k closest points to a given point(quick select).
: b) dot product of sparse matrices.
: 3, pirate, Design Messager. 必挂无疑了。
: 4, Ninja, a) longest increasing contiguous sequence in an array (
: leetcode)
: b)longest increasing sequence in an array(sequence does
: not need to be contiguous). For instance, 1,2,4,3,2,7,8,9 .. return 1,2,3,7,

avatar
l*g
40
bless lz!
avatar
m*s
41
Bless

7,

【在 c******n 的大作中提到】
: 本来已经接了Amazon的offer,但是还是想来FB看看。觉得campus 好大。
: 面的很一般,System Design 很差,一个Ninja也很一般。希望渺茫,求大家bless.
: 1, Jedi, behavioral + projects + one coding (phone number permutation)
: 2, Ninja, a) k closest points to a given point(quick select).
: b) dot product of sparse matrices.
: 3, pirate, Design Messager. 必挂无疑了。
: 4, Ninja, a) longest increasing contiguous sequence in an array (
: leetcode)
: b)longest increasing sequence in an array(sequence does
: not need to be contiguous). For instance, 1,2,4,3,2,7,8,9 .. return 1,2,3,7,

avatar
J*o
42
bless
avatar
p*2
43
加油
avatar
M*7
44
Bless!

7,

【在 c******n 的大作中提到】
: 本来已经接了Amazon的offer,但是还是想来FB看看。觉得campus 好大。
: 面的很一般,System Design 很差,一个Ninja也很一般。希望渺茫,求大家bless.
: 1, Jedi, behavioral + projects + one coding (phone number permutation)
: 2, Ninja, a) k closest points to a given point(quick select).
: b) dot product of sparse matrices.
: 3, pirate, Design Messager. 必挂无疑了。
: 4, Ninja, a) longest increasing contiguous sequence in an array (
: leetcode)
: b)longest increasing sequence in an array(sequence does
: not need to be contiguous). For instance, 1,2,4,3,2,7,8,9 .. return 1,2,3,7,

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。