由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - Palantir 2nd coding interview [pass, set for on-site]
相关主题
C++ Singleton的实现关于singleton 的面试题
Bloomberg电面面经singleton哪种写法好?
问道多线程的简单题目C++ Singleton Template - 编译通不过
问个amazon店面题singleton pattern problem
贡献一次电面题Code for Singleton design pattern
Google电面被拒,郁闷中请问一道special singleton class的题
gg面试题Can a 10-year-Java guy answer these 2 questions promptly?
问个c++的问题被鄙视了, c++基础知识
相关话题的讨论汇总
话题: singleton话题: instance话题: palantir话题: pthread话题: mutex
进入JobHunting版参与讨论
1 (共1页)
j********x
发帖数: 2330
1
1. 给一个字符串,将其中的单词全部反转,如hello world=>olloeh dlrow
2. singleton class,给出一个thread safe并且exception safe的实现
3. 算法题(不用写代码),一个整数数组,其中有一个数只出现一次,其余都
出现两次,找出只出现
一次的数;然后扩展一下,有一个数只出现一次,其余都出现三次,找出只出现
一次的数
向他提问,确认一下Palantir都是用java的。
c******o
发帖数: 534
2
最后一题的后面一个,出现3次有什么快的技巧吗
v***n
发帖数: 562
3
online coding interview多长时间?
j********x
发帖数: 2330
4
很多办法都可以
最简单的hashing
另一种是用quicksort的partition,每次看两边sub array的长度n,找到n满足n%3==1
,然后这个数一定在这一边,O(n)

【在 c******o 的大作中提到】
: 最后一题的后面一个,出现3次有什么快的技巧吗
j********x
发帖数: 2330
5
40-50
跟一般面试一样

【在 v***n 的大作中提到】
: online coding interview多长时间?
h*********n
发帖数: 915
6
2nd one is nice.

1

【在 j********x 的大作中提到】
: 很多办法都可以
: 最简单的hashing
: 另一种是用quicksort的partition,每次看两边sub array的长度n,找到n满足n%3==1
: ,然后这个数一定在这一边,O(n)

h*********n
发帖数: 915
7
all three need complete code? if so it's challenging.

【在 j********x 的大作中提到】
: 40-50
: 跟一般面试一样

j********x
发帖数: 2330
8
修改了一下,我默认算法题指的不是coding的题目。最后一个算法题不要写代码的,其
实写起来也不算难

【在 h*********n 的大作中提到】
: all three need complete code? if so it's challenging.
c******o
发帖数: 534
9
nice。这也可以,真是什么方法都想得到啊

1

【在 j********x 的大作中提到】
: 很多办法都可以
: 最简单的hashing
: 另一种是用quicksort的partition,每次看两边sub array的长度n,找到n满足n%3==1
: ,然后这个数一定在这一边,O(n)

h*********n
发帖数: 915
10
yes, it's not hard. but given 45-min window, complete three with bug free is
hard, unless you have practiced them before.
anyway, it seems you did well. cong.

【在 j********x 的大作中提到】
: 修改了一下,我默认算法题指的不是coding的题目。最后一个算法题不要写代码的,其
: 实写起来也不算难

相关主题
Google电面被拒,郁闷中关于singleton 的面试题
gg面试题singleton哪种写法好?
问个c++的问题C++ Singleton Template - 编译通不过
进入JobHunting版参与讨论
r*******y
发帖数: 1081
11
if the array is 1 2 2 3 3
then 1^2^2^3^3 = 1
can we apply similiar idea to 1 2 2 2 3 3 3 ?

【在 j********x 的大作中提到】
: 1. 给一个字符串,将其中的单词全部反转,如hello world=>olloeh dlrow
: 2. singleton class,给出一个thread safe并且exception safe的实现
: 3. 算法题(不用写代码),一个整数数组,其中有一个数只出现一次,其余都
: 出现两次,找出只出现
: 一次的数;然后扩展一下,有一个数只出现一次,其余都出现三次,找出只出现
: 一次的数
: 向他提问,确认一下Palantir都是用java的。

j********x
发帖数: 2330
12
我以前看到别人这种做法,做面试题如同应试。。。

【在 c******o 的大作中提到】
: nice。这也可以,真是什么方法都想得到啊
:
: 1

j********x
发帖数: 2330
13
I dont understand, xor does not work for number appears 3 times. There is no
similar approach to XOR works for 3 appearance.

【在 r*******y 的大作中提到】
: if the array is 1 2 2 3 3
: then 1^2^2^3^3 = 1
: can we apply similiar idea to 1 2 2 2 3 3 3 ?

D***h
发帖数: 183
14
多谢分享。
他家是只能用Java么? 有没有问java细节题?
第一次那个电话面试只说算法,不用把code念给他听?

【在 j********x 的大作中提到】
: 1. 给一个字符串,将其中的单词全部反转,如hello world=>olloeh dlrow
: 2. singleton class,给出一个thread safe并且exception safe的实现
: 3. 算法题(不用写代码),一个整数数组,其中有一个数只出现一次,其余都
: 出现两次,找出只出现
: 一次的数;然后扩展一下,有一个数只出现一次,其余都出现三次,找出只出现
: 一次的数
: 向他提问,确认一下Palantir都是用java的。

j********x
发帖数: 2330
15
一面有一个简单的题目是要求念code的,其他2-3个题目都是算法题,给出思路
即可;
任何语言都可以,除非非常偏门
不考语言细节
他们开发绝大部分是java,这根面试没有关系
二面还是可以挑任何语言(我的面试官基本不动c/c++)

【在 D***h 的大作中提到】
: 多谢分享。
: 他家是只能用Java么? 有没有问java细节题?
: 第一次那个电话面试只说算法,不用把code念给他听?

l*********y
发帖数: 142
16
singleton class,给出一个thread safe并且exception safe的实现
请问这个怎么写? thread safe用double check的方法就好了,exception safe那?

【在 j********x 的大作中提到】
: 1. 给一个字符串,将其中的单词全部反转,如hello world=>olloeh dlrow
: 2. singleton class,给出一个thread safe并且exception safe的实现
: 3. 算法题(不用写代码),一个整数数组,其中有一个数只出现一次,其余都
: 出现两次,找出只出现
: 一次的数;然后扩展一下,有一个数只出现一次,其余都出现三次,找出只出现
: 一次的数
: 向他提问,确认一下Palantir都是用java的。

j********x
发帖数: 2330
17
上锁呗
j********x
发帖数: 2330
18
上锁呗
j********x
发帖数: 2330
19
RAII
l*********y
发帖数: 142
20
看了wiki上的介绍,还算理解。
请问是下面这样吗?谢谢
class Singleton {
Singleton* GetInstance() {
if (! instance) {
pthread_mutex_lock();
if (! instance) {
instance = new Singleton();
}
pthread_mutex_unlock();
}
}
~Singleton() {
pthread_mutex_unlock();
}
private:
Singleton(){};
static Singleton* instance;
};
Singleton* Singleton::instance = NULL;
但是如果Singleton destructor被正常调用,pthread mutex这时是没有lock的
可以unlock吗?

【在 j********x 的大作中提到】
: RAII
相关主题
singleton pattern problemCan a 10-year-Java guy answer these 2 questions promptly?
Code for Singleton design pattern被鄙视了, c++基础知识
请问一道special singleton class的题刚才有个讨论singleton的帖子,找不到了
进入JobHunting版参与讨论
l***i
发帖数: 1309
21
This one is a bit strange. Since sorting gives O(nlogn) trivially.
Use partition with randomization will give O(n) in expected time. If you use
O(n) time algorithm to find median and do partition, then it is worst case
O(nlogn).
hashing is a bit cheating in my opinion. If you are allowed hashing, then
you can solve the problem with one element appear once and the other
elements can appear any number of two or more times. This defeats the
purpose of other elements appear exactly 3 times.

1

【在 j********x 的大作中提到】
: 很多办法都可以
: 最简单的hashing
: 另一种是用quicksort的partition,每次看两边sub array的长度n,找到n满足n%3==1
: ,然后这个数一定在这一边,O(n)

h*********n
发帖数: 915
22
为何dtor里解锁?没必要吧。
另外其实最简单的做法是在全局直接初始化:
Singleton::instance = new Singleton;

【在 l*********y 的大作中提到】
: 看了wiki上的介绍,还算理解。
: 请问是下面这样吗?谢谢
: class Singleton {
: Singleton* GetInstance() {
: if (! instance) {
: pthread_mutex_lock();
: if (! instance) {
: instance = new Singleton();
: }
: pthread_mutex_unlock();

l*********y
发帖数: 142
23
大哥,你这方法可以在面试里讲吗?

【在 h*********n 的大作中提到】
: 为何dtor里解锁?没必要吧。
: 另外其实最简单的做法是在全局直接初始化:
: Singleton::instance = new Singleton;

h*********n
发帖数: 915
24
why not? it's a discussion, not a standard test.

【在 l*********y 的大作中提到】
: 大哥,你这方法可以在面试里讲吗?
f*********5
发帖数: 576
25
u need to declare ctor as public if u want to do so
then everyone can call it to instantiate a new object

【在 h*********n 的大作中提到】
: 为何dtor里解锁?没必要吧。
: 另外其实最简单的做法是在全局直接初始化:
: Singleton::instance = new Singleton;

h*********n
发帖数: 915
26
how about this?
Singleton::instance = getSingleton()

【在 f*********5 的大作中提到】
: u need to declare ctor as public if u want to do so
: then everyone can call it to instantiate a new object

f*********5
发帖数: 576
27
maybe it is better to add a
static void DeleteInstance()
then use the same logic to call below
delete instance;

【在 l*********y 的大作中提到】
: 看了wiki上的介绍,还算理解。
: 请问是下面这样吗?谢谢
: class Singleton {
: Singleton* GetInstance() {
: if (! instance) {
: pthread_mutex_lock();
: if (! instance) {
: instance = new Singleton();
: }
: pthread_mutex_unlock();

j********x
发帖数: 2330
28
Lazy initialization is needed
Hmm, don't miss the point here, it's a discussion to showcase your knowledge
, not your ignorance....

【在 h*********n 的大作中提到】
: why not? it's a discussion, not a standard test.
j********x
发帖数: 2330
29
Hmm, think again...

use
case

【在 l***i 的大作中提到】
: This one is a bit strange. Since sorting gives O(nlogn) trivially.
: Use partition with randomization will give O(n) in expected time. If you use
: O(n) time algorithm to find median and do partition, then it is worst case
: O(nlogn).
: hashing is a bit cheating in my opinion. If you are allowed hashing, then
: you can solve the problem with one element appear once and the other
: elements can appear any number of two or more times. This defeats the
: purpose of other elements appear exactly 3 times.
:
: 1

h*********n
发帖数: 915
30
why lazy init is needed? what's the expense to init one in advance?
if the expense of lazy init is having a lock, it's hard to say if lazy is
worth.
the discussion is not only to show what you learn from the textbook but also
your analysis and understanding. it's an "interview", not an exam.

knowledge

【在 j********x 的大作中提到】
: Lazy initialization is needed
: Hmm, don't miss the point here, it's a discussion to showcase your knowledge
: , not your ignorance....

相关主题
问一个thread safe singleton的问题Bloomberg电面面经
面试常考哪些java的design pattern问道多线程的简单题目
C++ Singleton的实现问个amazon店面题
进入JobHunting版参与讨论
h*********n
发帖数: 915
31
expected O(n) good enough. but it would be perfect to point out the worst
case.

【在 j********x 的大作中提到】
: Hmm, think again...
:
: use
: case

j********x
发帖数: 2330
32
windows8 一大亮点是开机速度快。。。
减少initialization时间对提高app启动时间很有帮助。。。

also

【在 h*********n 的大作中提到】
: why lazy init is needed? what's the expense to init one in advance?
: if the expense of lazy init is having a lock, it's hard to say if lazy is
: worth.
: the discussion is not only to show what you learn from the textbook but also
: your analysis and understanding. it's an "interview", not an exam.
:
: knowledge

j********x
发帖数: 2330
33
面试官和我对partition的worst case以及如何优化有很明显的共识,实际上大家都知
道,不讲而已。基本上已经是常识性的东西了。

【在 h*********n 的大作中提到】
: expected O(n) good enough. but it would be perfect to point out the worst
: case.

h*********n
发帖数: 915
34
then what would you think about again?

【在 j********x 的大作中提到】
: 面试官和我对partition的worst case以及如何优化有很明显的共识,实际上大家都知
: 道,不讲而已。基本上已经是常识性的东西了。

j********x
发帖数: 2330
35
不好意思我看错了

【在 h*********n 的大作中提到】
: then what would you think about again?
1 (共1页)
进入JobHunting版参与讨论
相关主题
被鄙视了, c++基础知识贡献一次电面题
刚才有个讨论singleton的帖子,找不到了Google电面被拒,郁闷中
问一个thread safe singleton的问题gg面试题
面试常考哪些java的design pattern问个c++的问题
C++ Singleton的实现关于singleton 的面试题
Bloomberg电面面经singleton哪种写法好?
问道多线程的简单题目C++ Singleton Template - 编译通不过
问个amazon店面题singleton pattern problem
相关话题的讨论汇总
话题: singleton话题: instance话题: palantir话题: pthread话题: mutex