由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - G面试,拿不出最优解,写不好Code就一定挂?
相关主题
CC 150的第5版和第4版差别大吗?关于Bloomberg Phone Interview
onsite面试重点是什么Phone Interview 约时间大家都预留几天?
amazon悲剧尘埃落定,回馈版面谈面经
求教Google Intern 的 host interview收到招聘启事一则……
感觉一个月不做题就完全生疏了判断linkedlist是否palindrome最优解法是什么?
我的天啊Amazon 群面面经
Amazon telephone interview遇到一个极不靠谱的hr...上来吐槽一下
说点没用的,面试官说的ok,good,interesting都是什么意思如何做project assignment interview
相关话题的讨论汇总
话题: code话题: 分钟话题: c++话题: a3话题: topcoder
进入JobHunting版参与讨论
1 (共1页)
u*l
发帖数: 1943
1
我就奇怪了,短短45分钟,怎么可能又解出一个好算法,还写出Bug-Free的Code?
我看那些问题的难度,光想出算法45分钟都不错了;
或者面试官给算法,面试者写出Code来也不错;
更何况经常还要连问两道题!
反过来大侠们讲讲, 准备充分,题目都碰到的,就一定拿到Offer?!
我是好奇.
r*****k
发帖数: 1281
2
运气也很重要吧。碰到同胞应该比碰到阿三好很多。毕竟最后的review report是人
主观写的。

★ 发自iPhone App: ChineseWeb - 中文网站浏览器
★ 发自iPhone App: ChineseWeb - 中文网站浏览器

【在 u*l 的大作中提到】
: 我就奇怪了,短短45分钟,怎么可能又解出一个好算法,还写出Bug-Free的Code?
: 我看那些问题的难度,光想出算法45分钟都不错了;
: 或者面试官给算法,面试者写出Code来也不错;
: 更何况经常还要连问两道题!
: 反过来大侠们讲讲, 准备充分,题目都碰到的,就一定拿到Offer?!
: 我是好奇.

t****n
发帖数: 263
3
Trust me. That is nothing. Go to topcoder, and check out how people can read
, code, compile, test a problem within 5 minutes, for problems often much
harder than you will see in the interviews.

【在 u*l 的大作中提到】
: 我就奇怪了,短短45分钟,怎么可能又解出一个好算法,还写出Bug-Free的Code?
: 我看那些问题的难度,光想出算法45分钟都不错了;
: 或者面试官给算法,面试者写出Code来也不错;
: 更何况经常还要连问两道题!
: 反过来大侠们讲讲, 准备充分,题目都碰到的,就一定拿到Offer?!
: 我是好奇.

i*******6
发帖数: 107
4
5分钟搞定全部那种是神牛类型的,除非遇到自己写过的原题。
复习到一定程度以后,分析算法10分钟以内,分析各种特殊情况5分钟,写code10分钟
左右,最后检查一遍自改bug5分钟,30分钟内搞定bug-free code还是做得到的。
无他,唯手熟耳。
h*c
发帖数: 1859
5
牛人

read

【在 t****n 的大作中提到】
: Trust me. That is nothing. Go to topcoder, and check out how people can read
: , code, compile, test a problem within 5 minutes, for problems often much
: harder than you will see in the interviews.

h*c
发帖数: 1859
6
这个恩像是正常人

【在 i*******6 的大作中提到】
: 5分钟搞定全部那种是神牛类型的,除非遇到自己写过的原题。
: 复习到一定程度以后,分析算法10分钟以内,分析各种特殊情况5分钟,写code10分钟
: 左右,最后检查一遍自改bug5分钟,30分钟内搞定bug-free code还是做得到的。
: 无他,唯手熟耳。

g*********8
发帖数: 64
7
问题是你做不到不代表别人做不到,不要鄙视别人做题熟的人,那个也是很值得尊敬的。
就像做research,我就见过有人对很多篇文章非常熟的
g*********8
发帖数: 64
8
还有就是试着去理解每道题,每道题正确的解法(所有的BUG handle)一定是有它自己
的道理,就像C++很多复杂的规矩和设定是为了一些情况而存在的。我认为如果你把你
的程序想成一个大系统中的一部分,如果不处理bug会引起很大的问题,比如大规模停
电,已经假设用你程序的人都是白痴,会办所有可能犯的错误,会好一点
m*******l
发帖数: 12782
9
C++入魔了我觉得,C++11都加了写什么阿
乱七八糟的,虽然有道理,但是看着很乱

【在 g*********8 的大作中提到】
: 还有就是试着去理解每道题,每道题正确的解法(所有的BUG handle)一定是有它自己
: 的道理,就像C++很多复杂的规矩和设定是为了一些情况而存在的。我认为如果你把你
: 的程序想成一个大系统中的一部分,如果不处理bug会引起很大的问题,比如大规模停
: 电,已经假设用你程序的人都是白痴,会办所有可能犯的错误,会好一点

g*********8
发帖数: 64
10
所以python爽啊,c++是很烦,不过如effective c++所说:C++ is a language for
programmer,它是用来解决所有情况的,所以复杂一点也正常,因为所有情况这个太TMZ
复杂了

【在 m*******l 的大作中提到】
: C++入魔了我觉得,C++11都加了写什么阿
: 乱七八糟的,虽然有道理,但是看着很乱

相关主题
我的天啊关于Bloomberg Phone Interview
Amazon telephone interviewPhone Interview 约时间大家都预留几天?
说点没用的,面试官说的ok,good,interesting都是什么意思尘埃落定,回馈版面谈面经
进入JobHunting版参与讨论
p*****2
发帖数: 21240
11

read
能讲讲为什么可以那么快吗?

【在 t****n 的大作中提到】
: Trust me. That is nothing. Go to topcoder, and check out how people can read
: , code, compile, test a problem within 5 minutes, for problems often much
: harder than you will see in the interviews.

r*****k
发帖数: 1281
12
熟能生巧吧。

★ 发自iPhone App: ChineseWeb - 中文网站浏览器

【在 p*****2 的大作中提到】
:
: read
: 能讲讲为什么可以那么快吗?

l*****a
发帖数: 14598
13
为什么有的人百米跑9秒,有的人需要15秒

【在 p*****2 的大作中提到】
:
: read
: 能讲讲为什么可以那么快吗?

m*******l
发帖数: 12782
14
20秒的泪奔

【在 l*****a 的大作中提到】
: 为什么有的人百米跑9秒,有的人需要15秒
p*****2
发帖数: 21240
15

5分钟那个也太快了。不是百米能解释的。

【在 l*****a 的大作中提到】
: 为什么有的人百米跑9秒,有的人需要15秒
m*******l
发帖数: 12782
16
5分钟的人应该有,例如你让 meyers啥的去
但是全球60,70亿人里面,5分钟能高顶任何题的,应该不超过100个,我觉得

【在 p*****2 的大作中提到】
:
: 5分钟那个也太快了。不是百米能解释的。

p*****2
发帖数: 21240
17

就是想了解一下他们的背景呀。有没有什么介绍呢?看看有没有可以借鉴的地方。我想
除了天生以外,应该还有其他因素。

【在 m*******l 的大作中提到】
: 5分钟的人应该有,例如你让 meyers啥的去
: 但是全球60,70亿人里面,5分钟能高顶任何题的,应该不超过100个,我觉得

t****n
发帖数: 263
18
I remember once read an interview with Petr. He started programming
competition when he was 8 or 9 years old. Joined every single summer and
winter russian olympic (OI) camp for 6 years. But there are people who
started not as early as him. Maybe this will help:
http://community.topcoder.com/tc?module=Static&d1=hs&d2=spotlig

【在 p*****2 的大作中提到】
:
: 就是想了解一下他们的背景呀。有没有什么介绍呢?看看有没有可以借鉴的地方。我想
: 除了天生以外,应该还有其他因素。

v***a
发帖数: 365
19
这种面试题,Topcoder 前20%的人都是可以45分钟3道题目的

【在 u*l 的大作中提到】
: 我就奇怪了,短短45分钟,怎么可能又解出一个好算法,还写出Bug-Free的Code?
: 我看那些问题的难度,光想出算法45分钟都不错了;
: 或者面试官给算法,面试者写出Code来也不错;
: 更何况经常还要连问两道题!
: 反过来大侠们讲讲, 准备充分,题目都碰到的,就一定拿到Offer?!
: 我是好奇.

m*******l
发帖数: 12782
20
I bet those people don't need an interview to get a job in G/A/L/F...

【在 t****n 的大作中提到】
: I remember once read an interview with Petr. He started programming
: competition when he was 8 or 9 years old. Joined every single summer and
: winter russian olympic (OI) camp for 6 years. But there are people who
: started not as early as him. Maybe this will help:
: http://community.topcoder.com/tc?module=Static&d1=hs&d2=spotlig

t****n
发帖数: 263
21
I don't think that will happen to all of them. I even doubt everyone of
them can pass those interviews without problem. Especially in the case that
interviewers are A3. There is only 1 (or 2) red A3 on topcoder. It is like
asking a C or D student to grade an A student. Who the fuck knows what will
happen.

【在 m*******l 的大作中提到】
: I bet those people don't need an interview to get a job in G/A/L/F...
p*****2
发帖数: 21240
22

that
will
这倒是。

【在 t****n 的大作中提到】
: I don't think that will happen to all of them. I even doubt everyone of
: them can pass those interviews without problem. Especially in the case that
: interviewers are A3. There is only 1 (or 2) red A3 on topcoder. It is like
: asking a C or D student to grade an A student. Who the fuck knows what will
: happen.

1 (共1页)
进入JobHunting版参与讨论
相关主题
如何做project assignment interview感觉一个月不做题就完全生疏了
刷题的问题我的天啊
面试问题Amazon telephone interview
share一下我这两天遇到的C++ interview question说点没用的,面试官说的ok,good,interesting都是什么意思
CC 150的第5版和第4版差别大吗?关于Bloomberg Phone Interview
onsite面试重点是什么Phone Interview 约时间大家都预留几天?
amazon悲剧尘埃落定,回馈版面谈面经
求教Google Intern 的 host interview收到招聘启事一则……
相关话题的讨论汇总
话题: code话题: 分钟话题: c++话题: a3话题: topcoder