avatar
分享:中英文育儿书# NextGeneration - 我爱宝宝
s*n
1
昨天刚面的,2轮back to back.
第一轮:
1. 给一个字符串和a set of characters。把string按照set of characters里面的
character split.
sample input:
"i'm going to the story--today", {' ', '-'}
sample output:
{"i'm", "going", "to", "the", "store", "today"}
2. 模拟LRU。给出input,写出每一步cache中的变化。
第二轮:
1. Given an array of ints find the only repeated number. 假定最多只有一个重
复数字。
followup:如果没有重复数字,函数值怎么返回
2. Write a function that checks if a given string is a palindrome.
3. 设计。有一个Backpack class。里面有2个method, Put(Object_name, Object)和
Get(Object_name). What data structure or design would you use for this
backpack?
就这些了……
真心求大家的bless.之前面的几个都被拒了……希望这个能有机会。今天下午还有一个
面试,同样希望能得到大家的bless。从12月底到现在找了2个月了,这是最后的机会了
……多谢!
avatar
t*n
3
半小时前收到的它家的intern offer,同祝LZ好运.
avatar
s*n
4
多谢哇?你是面了多久有消息的?

【在 t*********n 的大作中提到】
: 半小时前收到的它家的intern offer,同祝LZ好运.
avatar
a*3
5
offer不在于多,在于精。bless
avatar
c*s
6
Bless!
avatar
l*u
7
bless

【在 s****n 的大作中提到】
: 昨天刚面的,2轮back to back.
: 第一轮:
: 1. 给一个字符串和a set of characters。把string按照set of characters里面的
: character split.
: sample input:
: "i'm going to the story--today", {' ', '-'}
: sample output:
: {"i'm", "going", "to", "the", "store", "today"}
: 2. 模拟LRU。给出input,写出每一步cache中的变化。
: 第二轮:

avatar
e*s
8
1. Given an array of ints find the only repeated number. 假定最多只有一个重
复数字。
followup:如果没有重复数字,函数值怎么返回
请问这个follow up改返回设呢?
avatar
l*i
9
bless!!!!!!
avatar
j*7
10
String a="i'm going to the story--today";
String[]b=a.split("[ -]+");
for(int i=0;iSystem.out.println(b[i]);
avatar
r*j
11
bless.
楼主是怎么得到的面试机会,我申请之后都一点反应没有呢。。。
avatar
z*8
12
请教一个问题,那个back-to-back phone interview 是需要选择两个不同时间段,还
是在同一个时间段?刚收到收到邮件要求选择phone interview 时间,有点疑惑。
avatar
c*a
13
bless!!!!!!
avatar
s*n
14
考虑找不到重复的话throw exception,不知道对不对

【在 e***s 的大作中提到】
: 1. Given an array of ints find the only repeated number. 假定最多只有一个重
: 复数字。
: followup:如果没有重复数字,函数值怎么返回
: 请问这个follow up改返回设呢?

avatar
s*n
15
我在官网投的,等了2个月。。。

【在 r******j 的大作中提到】
: bless.
: 楼主是怎么得到的面试机会,我申请之后都一点反应没有呢。。。

avatar
s*n
16
你要回复多个时间段……每个时间段至少2个小时……

【在 z****8 的大作中提到】
: 请教一个问题,那个back-to-back phone interview 是需要选择两个不同时间段,还
: 是在同一个时间段?刚收到收到邮件要求选择phone interview 时间,有点疑惑。

avatar
s*n
17
他明显不是考你这个的吧,要自己实现split

【在 j**7 的大作中提到】
: String a="i'm going to the story--today";
: String[]b=a.split("[ -]+");
: for(int i=0;i: System.out.println(b[i]);

avatar
r*j
18
两个月。。。这。。。恩 但愿我也有楼主这样的好运。。。我也快2月了...

【在 s****n 的大作中提到】
: 我在官网投的,等了2个月。。。
avatar
e*s
19
我是觉得返回什么都不对,throw exception也好像不太适合。

【在 s****n 的大作中提到】
: 考虑找不到重复的话throw exception,不知道对不对
avatar
t*5
20

back to back 的话 如果邮件里写了15分钟break 就是选一个时间 两个人会先后打电
话给你 两个人来自两个不同的组 然后基本上和第一个人扯一小时 挂完电话第二个人
就打进来了
昨天刚收拒信 悲剧

【在 z****8 的大作中提到】
: 请教一个问题,那个back-to-back phone interview 是需要选择两个不同时间段,还
: 是在同一个时间段?刚收到收到邮件要求选择phone interview 时间,有点疑惑。

avatar
s*n
21
patpat. 你是什么时候面的?

【在 t********5 的大作中提到】
:
: back to back 的话 如果邮件里写了15分钟break 就是选一个时间 两个人会先后打电
: 话给你 两个人来自两个不同的组 然后基本上和第一个人扯一小时 挂完电话第二个人
: 就打进来了
: 昨天刚收拒信 悲剧

avatar
k*t
22
bless!!
avatar
y*6
23

第一道题可以直接用 C++里的strtok吗?还是需要自己写函数实现 from scratch

【在 s****n 的大作中提到】
: 昨天刚面的,2轮back to back.
: 第一轮:
: 1. 给一个字符串和a set of characters。把string按照set of characters里面的
: character split.
: sample input:
: "i'm going to the story--today", {' ', '-'}
: sample output:
: {"i'm", "going", "to", "the", "store", "today"}
: 2. 模拟LRU。给出input,写出每一步cache中的变化。
: 第二轮:

avatar
d*o
24
同请教,这个返回值怎么设?

【在 e***s 的大作中提到】
: 1. Given an array of ints find the only repeated number. 假定最多只有一个重
: 复数字。
: followup:如果没有重复数字,函数值怎么返回
: 请问这个follow up改返回设呢?

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