Redian新闻
>
中国女学生大闹日本「寿司之神」名店:要吃全熟寿司
avatar
中国女学生大闹日本「寿司之神」名店:要吃全熟寿司# Joke - 肚皮舞运动
g*c
1
弱问一下,微软on campus interview,问了一道leetcode原题 Implement strStr(),
很快写出来了,回来后对比答案是没有错误的。然后就收到标准据信了。请问这个被拒
的原因会是什么啊?
对了还问了一些behavior question,比如team里有人不合作怎么办,随便说了几句。
我个人感觉面试官也没有很care这些问题,走过场的样子,专注点是程序。不知道这个
感觉对吗?
新手找工作,求解答~以后面试好注意些。谢谢!
avatar
e*a
3
too many candidates
avatar
y*9
5
How long did you get the email after the onsite interview? It has been 8
business days for me, and I haven't received anything yet.
avatar
s*m
6
不如说热的冰激凌更好些。
很多寿司是熟的,不用大惊小怪。

【在 x******i 的大作中提到】
: 下次闹哈根达斯。要吃全熟冰激凌
avatar
L*e
7
LZ说的是college campus interview吧?

【在 y****9 的大作中提到】
: How long did you get the email after the onsite interview? It has been 8
: business days for me, and I haven't received anything yet.

avatar
d*4
8
油炸冰棍,没吃过吧

【在 s*****m 的大作中提到】
: 不如说热的冰激凌更好些。
: 很多寿司是熟的,不用大惊小怪。

avatar
x*0
9
你代码拿来看看?
avatar
b*d
10
好漂亮耶,那这就是店的问题了
avatar
x*0
11
你代码拿来看看?
avatar
s*m
12
要全热的,笨蛋。

【在 d*****4 的大作中提到】
: 油炸冰棍,没吃过吧
avatar
g*c
13

过了两周多点。面完就说是两到三周出结果。

【在 y****9 的大作中提到】
: How long did you get the email after the onsite interview? It has been 8
: business days for me, and I haven't received anything yet.

avatar
n*6
14
可撸
avatar
y*9
15
me? no, I have been a software developer for 2 years. I like .Net very much
and am thrilled to join Microsoft. I took an onsite interview with MS on Feb
27
, and the development manager told me I will get the result in the next
Tuesday or Wednesday. Probably I was not perfect enough, I didn't get
anything yet. I send an email to the hiring manager, she is on vacation, and
her
backup doesn't reply me.

【在 L*****e 的大作中提到】
: LZ说的是college campus interview吧?
avatar
H*g
16
总算等到你了

【在 n******6 的大作中提到】
: 可撸
avatar
g*c
17

是啊。和被拒有关系吗?

【在 L*****e 的大作中提到】
: LZ说的是college campus interview吧?
avatar
h*o
18
这个寿司之神也太老土了,妈的,美国寿司全熟的多着了。LOL
avatar
g*c
19

当时的代码不记得了,两周多前的事了,在白板上写的。大概是
bool function(string s1,string s2)
{
//trival cases
if(s2.size()==0) return false;
if(s2.size()>s1.size()) return false;
int start =0;
while(start{
if(s1[start]!=s2[0])
{
start++;
continue;
}

int i = start;
int j=0;
for( j=0;j{
if(s1[i]==s2[j])
{
i++;
j++;
}
else
break;
}
if(j==s2.size())
return true;
start++;
}
return false;
}

【在 x******0 的大作中提到】
: 你代码拿来看看?
avatar
d*e
21
没关系就是看你顺眼否。我知道有人写了递归版的二叉树遍历也过了

【在 g*****c 的大作中提到】
:
: 当时的代码不记得了,两周多前的事了,在白板上写的。大概是
: bool function(string s1,string s2)
: {
: //trival cases
: if(s2.size()==0) return false;
: if(s2.size()>s1.size()) return false;
: int start =0;
: while(start: {

avatar
s*a
22
简单看了下就看到了这个:
int j=0;
for( int j=0;j如果面试时候这么写 危险吧。。。
avatar
L*e
23
不是,我是说楼主。。。
现在onsite结果一般是要take 5-10 business day。没办法,HR现在人手少,忙不过来
。。。

much
Feb
and

【在 y****9 的大作中提到】
: me? no, I have been a software developer for 2 years. I like .Net very much
: and am thrilled to join Microsoft. I took an onsite interview with MS on Feb
: 27
: , and the development manager told me I will get the result in the next
: Tuesday or Wednesday. Probably I was not perfect enough, I didn't get
: anything yet. I send an email to the hiring manager, she is on vacation, and
: her
: backup doesn't reply me.

avatar
L*e
24
哦,没关系,我是回答另外一位同学的,他问你onsite后多久知道消息,我说你是
college campus interview,和onsite不一样,所以你等多久知道结果和他要等多久知
道结果不相关。。。

【在 g*****c 的大作中提到】
:
: 当时的代码不记得了,两周多前的事了,在白板上写的。大概是
: bool function(string s1,string s2)
: {
: //trival cases
: if(s2.size()==0) return false;
: if(s2.size()>s1.size()) return false;
: int start =0;
: while(start: {

avatar
s*a
25
一般打到大boss基本就拿到offer了

【在 L*****e 的大作中提到】
: 哦,没关系,我是回答另外一位同学的,他问你onsite后多久知道消息,我说你是
: college campus interview,和onsite不一样,所以你等多久知道结果和他要等多久知
: 道结果不相关。。。

avatar
g*c
26

能不能解释下为什么?谢谢!

【在 s****a 的大作中提到】
: 简单看了下就看到了这个:
: int j=0;
: for( int j=0;j: 如果面试时候这么写 危险吧。。。

avatar
L*e
27
LZ这个是college campus interview,只有一轮,相当于tech screen,过了然后才会
bring to onsite.

【在 s****a 的大作中提到】
: 一般打到大boss基本就拿到offer了
avatar
L*e
28
有bug。。。面试官没有让你用几个测试case跑一跑?

【在 g*****c 的大作中提到】
:
: 能不能解释下为什么?谢谢!

avatar
s*a
29
你的两个j这么写就在两个域里了 for里面怎么变和外面的没关系。 这种错误如果被
checkin很难debug。
另外你的i也是能加过头的
你的程序大概的意思是有,但是能感觉出不是很常用c++,至少写代码不熟练。多练练
多写写。

【在 g*****c 的大作中提到】
:
: 能不能解释下为什么?谢谢!

avatar
y*9
30
谢谢左眼的回复,你之前叫我去西雅图版求内推,我还真的去了。。。你也在微软吗?
如果我能去一起吃个饭呗,认识一下啊。。。微软这么大,我估计每个组我都要问上半
个小时。。。那天onsite的时候阿三请吃午饭,我还问他为啥不用WP,还问他用的IE版
本是不是公司内部版= =

【在 L*****e 的大作中提到】
: 不是,我是说楼主。。。
: 现在onsite结果一般是要take 5-10 business day。没办法,HR现在人手少,忙不过来
: 。。。
:
: much
: Feb
: and

avatar
g*c
31

多谢多谢。这个j是发帖一时没注意。面的时候for里面是没有int的,这个我记得。面
的时候想到i会过头,不过没有改,因为面试官说pseudo code就可以。另外面的时候
trivail case就口述了一下,也没有写。看来以后还是得写详细点啊。

【在 s****a 的大作中提到】
: 你的两个j这么写就在两个域里了 for里面怎么变和外面的没关系。 这种错误如果被
: checkin很难debug。
: 另外你的i也是能加过头的
: 你的程序大概的意思是有,但是能感觉出不是很常用c++,至少写代码不熟练。多练练
: 多写写。

avatar
g*c
32

叫了。我就随手写了几个string比了下,没看出bug。请问你说的bug是哪个?j的是发
帖时没注意已经改了,面的时候没有。i的range会超出这个面的时候想到了不过当时我
一心想整体逻辑就没加code修改。是不是就这个细节挂了?

【在 L*****e 的大作中提到】
: 有bug。。。面试官没有让你用几个测试case跑一跑?
avatar
L*e
33
s1 = ab,s2 = bc时,你的code会crash。这不算是细节了,是一个需要cover的基本
case。。。

★ 发自iPhone App: ChineseWeb 8.2.2

【在 g*****c 的大作中提到】
:
: 叫了。我就随手写了几个string比了下,没看出bug。请问你说的bug是哪个?j的是发
: 帖时没注意已经改了,面的时候没有。i的range会超出这个面的时候想到了不过当时我
: 一心想整体逻辑就没加code修改。是不是就这个细节挂了?

avatar
g*c
34

多谢多谢。以后一定注意!

【在 L*****e 的大作中提到】
: s1 = ab,s2 = bc时,你的code会crash。这不算是细节了,是一个需要cover的基本
: case。。。
:
: ★ 发自iPhone App: ChineseWeb 8.2.2

avatar
g*c
35


【在 g*****c 的大作中提到】
:
: 多谢多谢。以后一定注意!

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