由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Google phone interview 金天
相关主题
这两道leetcode题有更好的答案吗?Two problems from Google
一个算法题目中缀转前缀表达式
一个关于指针的问题求助一算法
请教一道Leetcode 题计算组合数C(m,n)
算法:按照字典序求第k个排列数[apple面经] iOS software engineer
amazon一道面试题真心问一道题
Algorithms: permutaiont --Python codeL 电面2
这个facebook puzzle样题怎么做?请教两个算法题
相关话题的讨论汇总
话题: input话题: left话题: right话题: long话题: int
进入JobHunting版参与讨论
1 (共1页)
n********r
发帖数: 40
1
很nice的欧洲女马工和我talk.老问题,可我没见到过这个问题。讨论好久。终于在最
后弄出来了。不知她满意不满意。
很奇怪如果大家都没见的题。这种题,大家在面试中多快弄出来?
Given an array of numbers, nums, return an array of numbers products, where
products[i] is the product of all nums[j], j != i.
Input : [1, 2, 3, 4, 5]
Output: [(2*3*4*5), (1*3*4*5), (1*2*4*5), (1*2*3*5), (1*2*3*4)]
= [120, 60, 40, 30, 24]
You must do this in O(N) without using division.
b**********5
发帖数: 7881
2
我面试时, 怎么都不见到这种题??!!!
n********r
发帖数: 40
3
你不用急。我准备的问题人家也不问。你什么题?
s********u
发帖数: 1109
4
这个题,我有一天出去吃饭、逛超市的时候一直在想,没想出来。看了答案,晕倒。突
然觉得自己弱爆了。
n********r
发帖数: 40
5
刷题刷不到的话,会。总觉的这些大公司出这些题就像靠回字几种写法。
s********u
发帖数: 1109
6
这个题,我有一天出去吃饭、逛超市的时候一直在想,没想出来。看了答案,晕倒。突
然觉得自己弱爆了。
s*w
发帖数: 729
7
这题貌似就是考如何不用 / 实现 /
leetcode 有  divide two intergers 啊
没记错的话,就是使劲左移除数然后相减,得到结果再使劲左移再相减,结果就是所有
2^(左移的位数)相加
cc150 上有不用 +-做 +- 的:
做+: A+B = recursive +(A xor B, carry)
-: A+-B
-B : nagation +1
忘记咋做 * 了,难道是用左移相加?

where

【在 n********r 的大作中提到】
: 很nice的欧洲女马工和我talk.老问题,可我没见到过这个问题。讨论好久。终于在最
: 后弄出来了。不知她满意不满意。
: 很奇怪如果大家都没见的题。这种题,大家在面试中多快弄出来?
: Given an array of numbers, nums, return an array of numbers products, where
: products[i] is the product of all nums[j], j != i.
: Input : [1, 2, 3, 4, 5]
: Output: [(2*3*4*5), (1*3*4*5), (1*2*4*5), (1*2*3*5), (1*2*3*4)]
: = [120, 60, 40, 30, 24]
: You must do this in O(N) without using division.

g**4
发帖数: 863
8
看到O(n)了,我的错
请问LZ面的是intern还是full time?

where

【在 n********r 的大作中提到】
: 很nice的欧洲女马工和我talk.老问题,可我没见到过这个问题。讨论好久。终于在最
: 后弄出来了。不知她满意不满意。
: 很奇怪如果大家都没见的题。这种题,大家在面试中多快弄出来?
: Given an array of numbers, nums, return an array of numbers products, where
: products[i] is the product of all nums[j], j != i.
: Input : [1, 2, 3, 4, 5]
: Output: [(2*3*4*5), (1*3*4*5), (1*2*4*5), (1*2*3*5), (1*2*3*4)]
: = [120, 60, 40, 30, 24]
: You must do this in O(N) without using division.

t****n
发帖数: 263
9
About 30 seconds
y***g
发帖数: 1492
相关主题
amazon一道面试题Two problems from Google
Algorithms: permutaiont --Python code中缀转前缀表达式
这个facebook puzzle样题怎么做?求助一算法
进入JobHunting版参与讨论
d*k
发帖数: 207
11
我贡献个方法
idea: 若原数组为A,所求数组为B.对于每个i,令
L[i] = A[0] * A[1] * ... * A[i-1],
R[i] = A[i+1] * A[i+2] * ... * A[n-1],则B[i] = L[i] * R[i]。
用python Online coding一个哈
def solve(A):
n = len(A)
if n == 0:
return []
L = [0] * n
R = [0] * n
B = [0] * n
L[0] = 1
for i in xrange(1, n):
L[i] = L[i-1] * A[i-1]
R[n-1] = 1
for i in xrange(n-2, -1, -1):
R[i] = R[i+1] * A[i+1]
for i in xrange(1, n):
B[i] = L[i] * R[i]
return B
时间复杂度O(n),空间复杂度O(n)。
欢迎斧正,,顺便继续求G家在美国和中国以外的team match(因为没有H1b)。
j**7
发帖数: 143
12
Evernote的Interview Street有这道题。
public static void multiplyExceptSelf(int [] input)
{
if(input==null)
return;
if(input.length==0)
return;
long [] left=new long[input.length];
long [] right=new long[input.length];
left[0]=1;
for(int i=1;i {
left[i]=left[i-1]*input[i-1];
}
right[input.length-1]=1;
for(int i=input.length-2;i>=0;i--)
{
right[i]=right[i+1]*input[i+1];
}
for(int i=0;i {
long product=left[i]*right[i];
System.out.println(product);
}

}
l*n
发帖数: 529
13
显然不是你这种思路。
正解是计算prefix product & suffix product。

【在 s*w 的大作中提到】
: 这题貌似就是考如何不用 / 实现 /
: leetcode 有  divide two intergers 啊
: 没记错的话,就是使劲左移除数然后相减,得到结果再使劲左移再相减,结果就是所有
: 2^(左移的位数)相加
: cc150 上有不用 +-做 +- 的:
: 做+: A+B = recursive +(A xor B, carry)
: -: A+-B
: -B : nagation +1
: 忘记咋做 * 了,难道是用左移相加?
:

j**7
发帖数: 143
14
Evernote的Interview Street有这道题。
public static void multiplyExceptSelf(int [] input)
{
if(input==null)
return;
if(input.length==0)
return;
long [] left=new long[input.length];
long [] right=new long[input.length];
left[0]=1;
for(int i=1;i {
left[i]=left[i-1]*input[i-1];
}
right[input.length-1]=1;
for(int i=input.length-2;i>=0;i--)
{
right[i]=right[i+1]*input[i+1];
}
for(int i=0;i {
long product=left[i]*right[i];
System.out.println(product);
}

}
n********r
发帖数: 40
15
知道了很简单。
n********r
发帖数: 40
16
这个对。

【在 j**7 的大作中提到】
: Evernote的Interview Street有这道题。
: public static void multiplyExceptSelf(int [] input)
: {
: if(input==null)
: return;
: if(input.length==0)
: return;
: long [] left=new long[input.length];
: long [] right=new long[input.length];
: left[0]=1;

s*w
发帖数: 729
17
恩,看了大家的讨论觉得自己巨弱
思维定势太强了,不让/,第一反应就是walk around (因为训练过),没想到还是要
做 *

【在 l*n 的大作中提到】
: 显然不是你这种思路。
: 正解是计算prefix product & suffix product。

g****r
发帖数: 74
18
LZ怎么遇到这么好的题目。。。我那个也是女的,就一道题 open question : how to
design a maze, 要有分岔路,deadend。准备了几百道的算法全没用,就和她说dfs然
后写代码,明显感觉她不满意。。。。
w********r
发帖数: 14958
19
这个题要是做不出来, LZ你应该检讨。
绝对是你做题不够。 经典的不能再经典。
n********r
发帖数: 40
20
我只有2周时间。做了20个题。
相关主题
计算组合数C(m,n)L 电面2
[apple面经] iOS software engineer请教两个算法题
真心问一道题firmware engineer@apple电面
进入JobHunting版参与讨论
s********u
发帖数: 1109
21
额。。不是这个意思。。
那样的话还是用除法了,leetcode原题吧,有人讨论的。

【在 s*w 的大作中提到】
: 这题貌似就是考如何不用 / 实现 /
: leetcode 有  divide two intergers 啊
: 没记错的话,就是使劲左移除数然后相减,得到结果再使劲左移再相减,结果就是所有
: 2^(左移的位数)相加
: cc150 上有不用 +-做 +- 的:
: 做+: A+B = recursive +(A xor B, carry)
: -: A+-B
: -B : nagation +1
: 忘记咋做 * 了,难道是用左移相加?
:

s********u
发帖数: 1109
22
2周时间只做了20个leetcode题?不应该啊。。
我觉得2-3天就能做吧。

【在 n********r 的大作中提到】
: 我只有2周时间。做了20个题。
b**********5
发帖数: 7881
23
你是全天在做? 我就是下班后, 晚上边灌水, 边看电视, 边做做

【在 s********u 的大作中提到】
: 2周时间只做了20个leetcode题?不应该啊。。
: 我觉得2-3天就能做吧。

n********r
发帖数: 40
24
你不复习概念啊。我早忘了。
n********r
发帖数: 40
25
你不上班啊?

【在 s********u 的大作中提到】
: 2周时间只做了20个leetcode题?不应该啊。。
: 我觉得2-3天就能做吧。

s********u
发帖数: 1109
26
哦我fresh graduate。我还以为你说全职复习呢

【在 n********r 的大作中提到】
: 你不上班啊?
A***o
发帖数: 358
27
<1 min, 思路参照leetcode stock III

where

【在 n********r 的大作中提到】
: 很nice的欧洲女马工和我talk.老问题,可我没见到过这个问题。讨论好久。终于在最
: 后弄出来了。不知她满意不满意。
: 很奇怪如果大家都没见的题。这种题,大家在面试中多快弄出来?
: Given an array of numbers, nums, return an array of numbers products, where
: products[i] is the product of all nums[j], j != i.
: Input : [1, 2, 3, 4, 5]
: Output: [(2*3*4*5), (1*3*4*5), (1*2*4*5), (1*2*3*5), (1*2*3*4)]
: = [120, 60, 40, 30, 24]
: You must do this in O(N) without using division.

i********s
发帖数: 22
28
这个题目预期的是system design吧,而不是algorithm solution

to

【在 g****r 的大作中提到】
: LZ怎么遇到这么好的题目。。。我那个也是女的,就一道题 open question : how to
: design a maze, 要有分岔路,deadend。准备了几百道的算法全没用,就和她说dfs然
: 后写代码,明显感觉她不满意。。。。

g****r
发帖数: 74
29
是啊,满心以为店面只会有datastructure和算法题, 结果碰到这题我就是跪了。完全
没法shine啊。看来没缘分

【在 i********s 的大作中提到】
: 这个题目预期的是system design吧,而不是algorithm solution
:
: to

m******n
发帖数: 187
30
我觉得是algorithm,应该就是个dfs。

【在 i********s 的大作中提到】
: 这个题目预期的是system design吧,而不是algorithm solution
:
: to

相关主题
Minimum Window Substring (from leetcode)一个算法题目
求教 leetcode上OJ 的Combination Sum II 解法一个关于指针的问题
这两道leetcode题有更好的答案吗?请教一道Leetcode 题
进入JobHunting版参与讨论
g*********e
发帖数: 14401
31
教你设计 不是教你解迷宫

to

【在 g****r 的大作中提到】
: LZ怎么遇到这么好的题目。。。我那个也是女的,就一道题 open question : how to
: design a maze, 要有分岔路,deadend。准备了几百道的算法全没用,就和她说dfs然
: 后写代码,明显感觉她不满意。。。。

a******e
发帖数: 710
32
这种问题面试官不会给提示么?

where

【在 n********r 的大作中提到】
: 很nice的欧洲女马工和我talk.老问题,可我没见到过这个问题。讨论好久。终于在最
: 后弄出来了。不知她满意不满意。
: 很奇怪如果大家都没见的题。这种题,大家在面试中多快弄出来?
: Given an array of numbers, nums, return an array of numbers products, where
: products[i] is the product of all nums[j], j != i.
: Input : [1, 2, 3, 4, 5]
: Output: [(2*3*4*5), (1*3*4*5), (1*2*4*5), (1*2*3*5), (1*2*3*4)]
: = [120, 60, 40, 30, 24]
: You must do this in O(N) without using division.

g****r
发帖数: 74
33
是设计,不是解maze。 但是我是用dfs去设计,感觉设计的不太好。 visit一个节点以
后随机选择一个没有被visit的邻居来继续, 如果发现到不了exit就返回false,然后
重新再来一遍。然后可以随机生成一些branch(用的random),每个branch地方对两个
邻居visit
反正我觉得我的设计很水就是了, 没技术含量。 dfs是其中一种方法但是据说应该还
有其他设计的方法

【在 g*********e 的大作中提到】
: 教你设计 不是教你解迷宫
:
: to

a******e
发帖数: 710
34
请问为啥和stock III思路类似?

【在 A***o 的大作中提到】
: <1 min, 思路参照leetcode stock III
:
: where

b*******e
发帖数: 123
35
这种题说白了就一脑筋急转弯。

where

【在 n********r 的大作中提到】
: 很nice的欧洲女马工和我talk.老问题,可我没见到过这个问题。讨论好久。终于在最
: 后弄出来了。不知她满意不满意。
: 很奇怪如果大家都没见的题。这种题,大家在面试中多快弄出来?
: Given an array of numbers, nums, return an array of numbers products, where
: products[i] is the product of all nums[j], j != i.
: Input : [1, 2, 3, 4, 5]
: Output: [(2*3*4*5), (1*3*4*5), (1*2*4*5), (1*2*3*5), (1*2*3*4)]
: = [120, 60, 40, 30, 24]
: You must do this in O(N) without using division.

x******9
发帖数: 473
36
果然有这种感觉,一种难以名状的愤怒

【在 s********u 的大作中提到】
: 这个题,我有一天出去吃饭、逛超市的时候一直在想,没想出来。看了答案,晕倒。突
: 然觉得自己弱爆了。

n********r
发帖数: 40
37
愤怒! haha
x**********m
发帖数: 108
38
哈哈,就是哎,难怪都说面试是个运气活,有灵感就很简单……

【在 b*******e 的大作中提到】
: 这种题说白了就一脑筋急转弯。
:
: where

B******l
发帖数: 262
39
从左到右走一遍生成array L,L[i]=num[0]*num[1]*...*num[i]
从右到左走一遍生成array R,R[i]=num[i]*num[i+1]*...*num[n-1]
output[i]=L[i-1]*R[i+1]

where

【在 n********r 的大作中提到】
: 很nice的欧洲女马工和我talk.老问题,可我没见到过这个问题。讨论好久。终于在最
: 后弄出来了。不知她满意不满意。
: 很奇怪如果大家都没见的题。这种题,大家在面试中多快弄出来?
: Given an array of numbers, nums, return an array of numbers products, where
: products[i] is the product of all nums[j], j != i.
: Input : [1, 2, 3, 4, 5]
: Output: [(2*3*4*5), (1*3*4*5), (1*2*4*5), (1*2*3*5), (1*2*3*4)]
: = [120, 60, 40, 30, 24]
: You must do this in O(N) without using division.

1 (共1页)
进入JobHunting版参与讨论
相关主题
请教两个算法题算法:按照字典序求第k个排列数
firmware engineer@apple电面amazon一道面试题
Minimum Window Substring (from leetcode)Algorithms: permutaiont --Python code
求教 leetcode上OJ 的Combination Sum II 解法这个facebook puzzle样题怎么做?
这两道leetcode题有更好的答案吗?Two problems from Google
一个算法题目中缀转前缀表达式
一个关于指针的问题求助一算法
请教一道Leetcode 题计算组合数C(m,n)
相关话题的讨论汇总
话题: input话题: left话题: right话题: long话题: int