由买买提看人间百态

topics

全部话题 - 话题: follows
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)
l*****n
发帖数: 246
1
来自主题: JobHunting版 - 求问leetcode新题reverse bits的follow up
这个题的follow up怎么答?
我觉得基本解法就已经很好了。。。还能怎么改进呢?
实在想不通。。。??求高人指点
l***4
发帖数: 1788
2
来自主题: JobHunting版 - FB面试题一道的follow up
题目很简单:
1. 给一个linked list, 求长度
2. 实现在linked list中append一个节点
3. 实现在linked list中prepend一个节点
4. 利用上面的函数,实现将一个数组变成linked list.
但是有一个follow up:
5. 要求提高4的性能。
在哪些方面能提高?4已经是线性复杂度了
c**a
发帖数: 324
3
个人认为会引起反感。你面都面完了,你再说有什么用?面试时候表现好就是好,表现
不行照样据,管你发多少thank you/follow up letter。
a*********a
发帖数: 3656
4
if you have yet to receive their written offer letter, proceed as if there
was no offer at all. continue looking.
if you still remember who was the big boss during the interview, you can try
to reach out to him/her. I would hope you v met the head of the hiring
group. keep it short and polite. just an email of a few lines. Other
interviewers don't matter at this point.
helps if you have a referrer or friend inside, who can talk to the HM. but
that only helps with fact finding, not likely expedit... 阅读全帖
s**e
发帖数: 1523
5
和hiring manager电面之后一周接到recruiter电话,说电面情况不错,可以move on
and schedule an on-site interview。说HR会很快和我联系。可是过了一周了一点消
息也没有,是不是应该打个电话或者发个电子邮件去follow up一下?毕竟之前只是口
头通知,也没有证据,不会又不给机会了吧。找工作焦虑且患得患失中,请各位大侠支
招。谢谢!!!
b******i
发帖数: 914
6
Leetcode的帖子在这儿:
http://articles.leetcode.com/2010/09/serializationdeserializati
大概的方法就是前序遍历,然后null就用#代替。
但是里面follow-up:
What if we need to store strings that can contain any characters (including
the sentinel) in the binary tree? Could you come up with a solution to
overcome this shortcoming?
这个怎么回答?谢谢
Z**L
发帖数: 1101
7
来自主题: JobHunting版 - onsite之后的follow up,大家给点意见
最近在本地公司onsite,面试完一切都不错,我告诉公司我手里有offer,问他们能否快
点答复。两天后公司说要move forward, need to check degree 以及要推荐信,
说hopefully 4月7号给决定。
今天已经是周末了,到现在也没有任何消息,我该下周一发个follow up邮件吗?
会不会让人家觉得催得太紧?
谢谢大家
b******i
发帖数: 914
8
刚写了一个,没有好好test,请指点:
不过好像你主要是问follow-up?那我再想想
顺便问一下,我就见过之前一次,你还在哪儿的面经看到过这个题的
class Solution {
public:
int task_scheduler(string s, int t) {
int n = s.length();
if(n == 0)
return 0;
if(t <= 0)
return n;
vector lastindex(256, -1);
int shift = 0;
for(int i = 0; i < n; i++) {
char c = s[i];
int curr = shift + i;
if(lastindex[c] != -1) {
shift += max(0, lastindex[c] + t ... 阅读全帖
j**********3
发帖数: 3211
9
为什么这么设计?我follow了几万个,然后挨个找?累死了
f****e
发帖数: 923
10
decode ways follow up string 里面有* 怎么修改代码
r*******h
发帖数: 315
11
Move on吧。决定招不招一个人的因素太多了。可以follow up一次,但是不用抱太大希
望。
e*******s
发帖数: 1927
12
心态上move on,然后follow up一下, nothing to lose。

发帖数: 1
13
我覺得這個題的follow up有點問題。刪除頭或者尾元素並不能讓最小值更小或最大值
更大,所以無論怎麼刪除,都不能完成第一題的條件,對麼?
J*****L
发帖数: 73
14
follow up有大小说错了吧
越删 min^2
c********t
发帖数: 5706
15
lz描述应该是正确的。因为最小数可能是负数。
第一个follow-up,从后往前找,不需要都满足,找到满足的最小index
第二个 use min to split to subarrays , 再对每个subarray check, recursion 找
到最长的满足. O(nlogn)
J*****v
发帖数: 314
16
没错,因为有负数,所以题目是对的。
我们很可能需要把各个数的平方根存在一个数组里,这样比较快很多。
但是两个follow-up还需要其他trick才能解决,你的解法能详细说说吗?
J*****v
发帖数: 314
17
第二个follow-up如果用上面同样的方法可解,时间复杂度O(N^2),不知道有没有更好
的方法?
J*****v
发帖数: 314
18
follow 2每删一次元素都会导致一维leftMax和leftMin变动,所以你说的O(N)不可能成
立,只能用二维数组leftMax和leftMin,所以不会是O(N)
这题没这么简单,你们想的太简单了
n*****x
发帖数: 686
19
我觉得,要是这题我做出来了,下一个follow up就是怎么scale up了

.
very
n*****x
发帖数: 686
20
做一个双向的BFS,维护两个当前到达point set,和一个visited set,和word ladder
类似,第一次相遇就是最短了。
follow up那个,只是说找到所有不相交路径,并没有要求最短。
c******w
发帖数: 1108
21
Let A be the input array of digits or *
Let I(n, 1) = count of valid values (between 1 and 26) can be obtained by A[
n].
If A[n] == 0, then I(n, 1) = 0;
else if A[n] == *, then I(n, 1) = 9; // 1~9
else A[n] = 1~9, then I(n, 1) = 1.
Let I(n, 2) = count of valid values can be obtained by A[n-1] * 10 A[n].
If A[n-1] == 1, then I(n, 2) = (A[n] == * ? 10 : 1); // 10~19
else if A[n-1] == 2, then I(n, 2) = (A[n] == * ? 7 : (A[n] <= 6 ? 1 : 0))
; // 20~26
else if A[n-1] == *, then I(n, 2) = (A[n] == *... 阅读全帖
m********l
发帖数: 791
22
比如
实现一个LRU
实现一个Queue
实现一个HashMap
follow up:how to make it thread-safe? how to scale it?
常考题,版上的大神能分享一下经验吗?感谢!
f*****8
发帖数: 123
23
Our company is hiring part time online case followers and/or online English
teachers:
Key responsibilities include, but are not limited to:
1 Work closely with customers for school application
2 Work with team members to complete assigned tasks on time
3 Provide English training lessons to students and design courses
4 Address customers and team members requests on time
Qualifications:
Must have:
1 Excellent English writing and speaking skills with English majo... 阅读全帖
f*****8
发帖数: 123
24
Our company is hiring part time online case followers and/or online English
teachers:
Key responsibilities include, but are not limited to:
1 Work closely with customers for school application
2 Work with team members to complete assigned tasks on time
3 Provide English training lessons to students and design courses
4 Address customers and team members requests on time
Qualifications:
Must have:
1 Excellent English writing and speaking skills with English majo... 阅读全帖
f*****8
发帖数: 123
25
Our Educational Consulting company is hiring part time online case followers
and/or online English teachers:
Key responsibilities include, but are not limited to:
1 Work closely with customers for school application
2 Work with team members to complete assigned tasks on time
3 Provide English training lessons to students and design courses
4 Address customers and team members requests on time
Qualifications:
Must have:
1 Excellent English writing and speaking sk... 阅读全帖
f*****8
发帖数: 123
26
Our Educational Consulting company is hiring part time online case followers
and/or online English teachers:
Key responsibilities include, but are not limited to:
1 Work closely with customers for school application
2 Work with team members to complete assigned tasks on time
3 Provide English training lessons to students and design courses
4 Address customers and team members requests on time
Qualifications:
Must have:
1 Excellent English writing and speaking sk... 阅读全帖
g****t
发帖数: 945
27
请问剖腹产后2 weeks的follow up都查些什么呢?
伤口周围还是有些疼的,虽然每天都有所好转,但感觉还是开不了车。
要是不正经检查什么,想托4,5天再去复查了。
g****t
发帖数: 945
28
谢谢,那这样我就过几天再去了,不想麻烦人开车带我了
或者,干脆就不去这个two weeks了,直接去6 weeks的follow up算了。
6 weeks的都做什么呢?是不是要做个ultrasound,papsmear之类的?
g****t
发帖数: 945
29
界不是忽悠人么,瞎让人折腾尼!
现在就打电话cancel 2 weeks的follow up,直接等6 weeks了!
o****h
发帖数: 170
30
来自主题: NextGeneration版 - 关于大B超后的follow up B超
完全不用担心,我觉得医生想多赚钱吧,我认识的人没有不做follow-upB超
j********y
发帖数: 226
31
请教各位美妈
看到医院发的手册上有产后出院两天的follow up appointment
这个是医生来家里检查嘛?还是我要去医院啊?
az
发帖数: 16686
32
当然你去啦
出院两天是宝宝的follow up appt吧?
j********y
发帖数: 226
33

恩,我也觉得如果出院2天就自己去医院比较奇怪,不过医生上门貌似更奇怪,医生估
计也没这么空啊,哈哈
我觉得可能也是我理解错误了,估计出院2天是宝宝的follow up appointment,呵呵
s*********e
发帖数: 6149
34
my boy refuses fomular and babyfood. only accepts breastfeeding now. but he
seems very happy when i take him out to play. i will make an apportment with
ped for follow up.【 在 az (哥哥小弟和弟弟大哥) 的大作中提到: 】
M*******n
发帖数: 480
35
我家是已经吃药一个星期了,打电话问护士,护士说精神好,没异常就不用follow up
。但是我还是不放心,决定明天就预约
B*******t
发帖数: 1797
36
来自主题: NextGeneration版 - 请问各位版上follow CLB的妈妈们
四个月大的宝宝,下午四点那个nap到底还要不要睡呀?CLB说most baby可以不用睡了
。可是如果这样的话,宝宝相当于从2点多醒了就一直要撑到7点多。这wakeful time也
太长了吧。。
我家娃上个月四点左右推出去遛遛一般会nap上20-30分钟。现在好像是不太愿意nap了
。今天下午就闭眼大概5分钟,之后在车上坐carseat里也是瞪着大眼睛。可是回家以后
,6点不到就开始fuzzy,想有人抱,有点悃悃的意思。赶紧提前把她settle down了。
请问版上follow CLB的妈妈们,有多少在宝宝4个月的时候drop了下午4点的那个nap而
且成功的?给我点信心吧。。
c**********c
发帖数: 1378
37
晚上起来n次喂奶再加2次长时间的泵奶真心伤不起。最近在给娃clb. 本打算一开始
loosely follow clb的,但发现娃食量不够大,每顿最多120。所以就难以撑到clb规定
的时间点再吃。白天的话,会抱啊哄啊,硬让娃撑到那个点再吃。但到了那个点,娃尽
管很饿,也依旧吃那么点,有时吃的连100都不到。所以,有时中途娃饿了叫,我就不
按时间表给他喂了。因为看一些总结说,clb的核心是白天给足够的奶量,晚上才可以
挨过夜。所以,我的想法是,既然白天娃按clb的次数吃,远达不到一天需要的奶量,
那白天就只能增加吃的次数来补充奶量。但老公的想法是,白天也要严格按照时间表来
,白天时间表说4小时不吃,只有中途不给吃,让娃渐渐习惯撑4小时甚至以上不吃,娃
晚上才能慢慢也撑那么久不吃,最终才能过渡到睡整觉。我不确定老公想法对不对,但
就怕娃吃的次数又少,每次量也不增加,老让饿着硬撑,会影响生长发育,而且,白天
吃不饱,晚上应该会更频繁要吃吧?请clb成功的妈妈们来分享下经验吧。。
k***e
发帖数: 135
38
应该按需
follow your heart
Dad feels nothing but mom can.

★ 发自iPhone App: ChineseWeb 7.7
D**********R
发帖数: 25234
39
都试过,他听不懂我说话。
我也知道在幼儿园培养独立性肯定是别的环境无法取代的,但是他现在的情况也不适合
上,我家的经济也不算狠宽裕,排
队也没排上,所以只好想办法弥补一些了。
现在和小朋友玩的时候我都尽量躲在一旁让他自己去和别人交往的,即使被抢玩具和被
打,不是太严重我都忍了,他也挺
喜欢小朋友的(某些特定的来电的),就是follow指令这一块我不知道怎么引导。
v********u
发帖数: 57
40
我觉得娃大一些就好了。
半年前,我费大劲的教他各种英文歌,动作,我家娃去参加活动基本上就是在后面待着
,那时候,比你家娃还大几个月。
现在,再带他去,他enjoy得很,自己唱歌,做动作,原来教的全都会了,也很能follow
instruction。
还有,在家也要学一下英语基本会话,我家娃2岁9个月,现在英语可以很好的交流了,
不是我教的,我在网上会给他找一些fun的video,他自己也喜欢看
DVD.
我们平时唱得歌,儿歌,看的书都和story time的基本上一样,这样对他来说没有什么
陌生感。
还有,我觉得你要在他和小朋友玩的时候,告诉他一些基本的rule,这样孩子的安全感
也比较足。
D**********R
发帖数: 25234
41
多谢你的建议。
我觉得他对那些内容陌生可能是一个主要原因。他在唱复杂的歌曲和听故事时,最坐不
住。
我带他去社区大学上亲子课已经是第三次了,他对那首sleeping bunnies的歌比较干兴
趣,我就放网上的听,在家对着他
唱,结果今天上课唱歌的时候,他居然也会趴到地上做那些动作,虽然最后不会跳,但
是也跟着上下顿。。。。我下一个
目标湿那首sing around the rosy。。。。
能请教一下你都给娃找了哪方面的video吗?

follow
r*****n
发帖数: 3014
42
小娃都是这样的,我们上的这个班也是只有一两个女孩儿会一直跟着老师,其他的都在
自娱自乐,然后降落伞的时候大家一哄而上。建议你再试试音乐课,班小,大部分时间
坐着,每件事儿都会让每个娃做一遍,更容易培养娃follow rules,至少是听老师的话?
j*****u
发帖数: 546
43
来自主题: Parenting版 - 1岁半,很难follow instruction怎么办
娃1岁半,基本上我行我素,很难follow instruction,感觉像是从娘胎里带来的毛病
,从很小的时候就开始很有自己的主意。不知道这样的小孩要怎样训练才能听大人的话
呢?
k***y
发帖数: 1645
44
来自主题: Parenting版 - 1岁半,很难follow instruction怎么办
找他最喜欢的事情先说,我家的是爱吃饭,就说:先过来洗手再吃饭,然后不停的唐。
。。过几个月人家会说话了,问他为什么不follow,心情好的时候会告诉我: 不爱听
y*****p
发帖数: 733
45
来自主题: Parenting版 - 小孩是个follower,怎么办
3。5岁,到哪里都有要好的朋友。朋友还有比她小的。
但是总是个follower。别人怎么玩,她就跟着。
问她有没有自己的想法,她说没有。
有没有办法改变一下。
B******1
发帖数: 9094
46
来自主题: Parenting版 - 小孩是个follower,怎么办
Not ready yet. But I am sure she has her own ideas. For example, by
following
others she has already made a decision herself.
D**********R
发帖数: 25234
47
来自主题: Parenting版 - 小孩是个follower,怎么办
全家都是follower的淡定路过。。。
M*******A
发帖数: 14451
48
来自主题: Parenting版 - 小孩是个follower,怎么办
一个team一个leader,大部分人都是follower
w********9
发帖数: 377
49
来自主题: Parenting版 - 小孩是个follower,怎么办
这样的孩子到哪都有朋友,不怕没人跟她玩,因为她愿意迁就别人,就是我们大人说的
随和儿吧。我们家这个刚好相反,总想小朋友跟着她的idea来,有些bossy,但是很多
时候其他孩子正enjoy自己的game,不愿意听她的,这时就没人跟她玩儿了。我劝她你
也可以follow其他小朋友的idea,这样就能交道更多朋友,她却说他们就是瞎跑,不想
跟他们玩那样的游戏。结果就是看着她有时候没有朋友一起玩,也很可怜她,但是我觉
得除了天生和引导,孩子还要学会自己处理这些问题,哪怕有时是sad experience。
w********9
发帖数: 377
50
来自主题: Parenting版 - 小孩是个follower,怎么办
我觉得重点不是在意孩子是不是follow,而是她是否有自己的idea,而不是都一味的接
受。与人交往本来就是个学习的过程,扬长避短吧。
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)