l******n 发帖数: 641 | 1 should be 1st big positive, with
2,3 postive compared with 1,2 nagative. |
|
g********g 发帖数: 65 | 2 我的理解 theta is Partial put value/ partial (T-t) ,随着时间的推移, 随着T-t 越来越
小的话,postive theta means put options value will decrease. |
|
m********q 发帖数: 2 | 3 到底有没有time o(n)and space o(1)的solution 呀?
Given an array of positive and negative integers, re-arrange it so that
you have postives on one end and negatives on the other, BUT retain the
original order of appearance.
For eg. 1, 7, -5, 9, -12, 15 => -5, -12, 1, 7, 9, 15 |
|
j**l 发帖数: 2911 | 4 http://www.careercup.com/question?id=2007663
Given two sorted postive integer arrays A(n) and B(n) (let's say they are
decreasingly sorted), we define a set S = {(a,b) | a \in A and b \in B}.
Obviously there are n^2 elements in S. The value of such a pair is defined
as Val(a,b) = a + b. Now we want to get the n pairs from S with largest
values. Need an O(n) algorithm. |
|
s******f 发帖数: 3984 | 5 来自主题: JobHunting版 - 伤心透了! 一样,周2面了公司,全是POSTIVE FEEDBACK,周四HR谈到VISA问题 (我已经OPT延期
了,可以自由工作17个月,而且这个公司也是E-VERIFY),立马黑面。
没法整啊 |
|
m*******r 发帖数: 4468 | 6 笑死, 跟一帮完全不networking的人对牛弹琴, 被说成出卖色相了。什么世道,
networking里面最重要的就是要postive attitude, 坏事都要说得象朵花一样。 这个
技能不是每个人都有。 |
|
q***z 发帖数: 554 | 7 good luck 通常是negative或者neutral的,但肯定不是Positive
keep in touch, I hope it works out... 是postive的
根据本人面试无数,offer多多的经验~~ |
|
l****u 发帖数: 2778 | 8 我的口头OFFER是说我面试postive,然后让我等正式offer, 不过什么东西都没找我要 |
|
p**********l 发帖数: 1160 | 9 统计master, 烂校, 没有internship, 没有经验
找工作的过程真是考验意志力的过程, 我曾经在等消息 的时候感到非常的失落还有恐
惧感, 生怕不会找到entry level 的工作了, 还打算了要去读phd, 多学一些统计课
。
又一想自己年龄挺大了, 还有孩子和家庭, 读一个phd 意味着会有更少的时间陪家人
。 总而言之, 我平常是非常postive 的一个人, 找工作这几个月, 让我体会到了生
活的不易。虽然我水平不行, 找到的也是非常entry level 的工作和工资。 但是我还是讲一下自己的一点经验, 希望对别的同学有所帮助。
在面试的时候,电面和onsite, 我曾经被问到的是:
介绍一下你自已
描述一个你做过的project (如果是银行方面的, 我就介绍一个time series 的
project)
你用过什么 SAS procedures
你觉得自己对SAS 的掌握程度、(我一般说是intermediate, and there is so much
to learn in SAS)
怎么向别人解释 p value, correlation
遇到m... 阅读全帖 |
|
c******r 发帖数: 300 | 10 If the numbers are stored in a list, i think you can do it by using O(n)
insertion/deletion operators and O(1) space. You just need to keep a pointer
to store the place for the next positive number and then you delete postive
number when necessary and insert it at the pointer. |
|
f***z 发帖数: 65 | 11 Given:
Binary operators: +, *
Operands: postive integers
Tree1: *
|
-----
| |
+ 3
|
---
| |
1 2
First Array Representation Example:
PreOrder: * + 1 2 3
PostOrder: 1 2 + 3 *
输入一个preorder字符串,有运算符和数字,输出postorder.
请问如何实现? |
|
|
M*****a 发帖数: 2054 | 13 恭喜啊!
g昨天onsite今天就有结果了。。。
g是不是前几天有feedback就比较postive,要是1周多没消息就是铁钉挂了?
都不 |
|
p*****2 发帖数: 21240 | 14 同意测试的重要性。其实我是一边写代码,一边写测试的,不过主要就是postive test
,最重要的scenario。
算了,同事好像问题更严重。根本就不测试,checkin之后到了我这里根本就不work。
大大降低了我的工作效率。上周就没测试,我发现三个bug,这周fix了,我一试还是不
行。看着这样的同事拿着20多万的年薪真眼红呀。 |
|
d****n 发帖数: 233 | 15 来自主题: JobHunting版 - 问一到题目 vector subsets(vector a) {
int n = a.size();
// minimum negative sum
int min = 0;
// max postive sum
int max = 0;
for(int i = 0; i < n; i++) {
if (a[i] < 0) {
min += a[i];
}
else {
max += a[i];
}
// mask[i] = 1 means there is a sub sum equals to i
int mask[] = new int[-min + max + 1];
// lookupTable[i, j] = 1 means there is a sub sum equals to j
// and a[i] is in the sub set
ve... 阅读全帖 |
|
|
s****r 发帖数: 28 | 17 Given two sorted postive integer arrays A(n) and B(n),each array is
decreased order sorted. find n smallest sum of pair of (a, b), a belong to A
, b belong to B
Is there a O(n) algorithm ? |
|
w****x 发帖数: 2483 | 18 //Given an array of positive and negative integers,
//re-arrange it so that you have postives on one end
//and negatives on the other, BUT retain the original order of appearance.
do it in-place
//e.g. 1, 7, -5, 9, -12, 15 => -5, -12, 1, 7, 9, 15
//When considering optimization from O(n^2) to O(nlogn),use divided &
conquer
void swapRange(int a[], int nBeg, int nEnd)
{
assert(a && nBeg <= nEnd);
while (nBeg < nEnd)
swap(a[nBeg++], a[nEnd--]);
}
//solution:
//e.g. in any stage: ---... 阅读全帖 |
|
t*****i 发帖数: 69 | 19 A家的话Bar Raiser是可以Veto的,所以Very Close可能就是其他人给了Postive
Feedback但是被Bar Raiser给Veto了,6个月以后再战吧 |
|
h*******e 发帖数: 1377 | 20 讨论一下first missing postive integer吧。。比如最后一问不能swap那么
unordered_set让用不呢。 |
|
h*******e 发帖数: 1377 | 21 讨论一下first missing postive integer吧。。比如最后一问不能swap那么
unordered_set让用不呢。 |
|
d********y 发帖数: 39 | 22 不建议进一步联系了,面完就过了吧。这边找工作什么情况都可能会出的,我师兄有职
位被取消的,我的有给口头Offer给不出正式Offer的,Interview 给了Postive Review
的还是挂了的。而且统计显示PhD一般需要12个月到18个月的Job Hunting 的时间,这
里还包含美国学生的数据。你暑假刚开始找,也没几天,又不是马工硅工油工,加油找
吧 |
|
z***m 发帖数: 1602 | 23 我遇到过一个某social network的中国人店面我,我当头脑子晕的,结果连array相加
在16进制的时候卡住了,费了半天劲才写完。本来以为挂了,结果第二天HR说收到很
postive的feedback,然后去onsite了。
国人还是有好人的,值得学习,发扬。 |
|
s***9 发帖数: 42 | 24 两周前onsite的,onsite后一天recruiter 说feedback postive, 给发到 hire
committee了, 两三天后就会有update, 然后就没消息了。。。
twitter onsite 后多久有结果, 是给个email 还是call, 还是默剧
感觉他们家的recruiter 部门很搞,回复很慢 |
|
|
d**********o 发帖数: 279 | 26 有可能吧, 不过我的recruiter 说都是postive. 也可能是骗我。 |
|
s********s 发帖数: 77 | 27 其实这种调查非常不准确,因为上blind的人基本是两类:
1. 公司很忙,压力大。只有做得特别好的才会上blind,或者说上blind的大部分都是
在这种公司内部混得好的。那些觉得忙的人,基本都去刷题了,谁还上blind。
2. 公司比较闲,压力不大。这种公司就算做得一般的人也会上blind,样本可靠很多。
因为上面两种因素,会造成那些特别忙的公司,很多人做得不爽,但没时间上blind,
而在这种公司做得好的人才有时间上,所以结果往往很postive,因为样本缺少了那些
觉得很忙不爽的。而那些本来就比较闲的公司,例如Google,微软,oracle这种,样本
会可靠很多,因为基本是涵盖了大部分人。
从我身边的朋友来说,很多人是想从F去G,相反方向的反而少(应该是因为F比较忙,
压力大),但那些一直留在F的人,一般都是在里面混得很不错的,对公司会比较满意
。反正我是不相信Netflix的平均满意度会高于Google。 |
|
s********s 发帖数: 77 | 28 其实这种调查非常不准确,因为上blind的人基本是两类:
1. 公司很忙,压力大。只有做得特别好的才会上blind,或者说上blind的大部分都是
在这种公司内部混得好的。那些觉得忙的人,基本都去刷题了,谁还上blind。
2. 公司比较闲,压力不大。这种公司就算做得一般的人也会上blind,样本可靠很多。
因为上面两种因素,会造成那些特别忙的公司,很多人做得不爽,但没时间上blind,
而在这种公司做得好的人才有时间上,所以结果往往很postive,因为样本缺少了那些
觉得很忙不爽的。而那些本来就比较闲的公司,例如Google,微软,oracle这种,样本
会可靠很多,因为基本是涵盖了大部分人。
从我身边的朋友来说,很多人是想从F去G,相反方向的反而少(应该是因为F比较忙,
压力大),但那些一直留在F的人,一般都是在里面混得很不错的,对公司会比较满意
。反正我是不相信Netflix的平均满意度会高于Google。 |
|
h******c 发帖数: 12 | 29 大家好,
这两天google match team,两个组给的postive,manager都是印度人
第一个是youtube 组,做的是youtube video的分割,存储和读写,感觉是distributed
system
第二个是google express的Inventory analytics Data,主要是做数据分析的
具体的还是要进去之后才知道,
感觉两个组都是挺好的,不好选啊
大家有没有好的建议,谢谢 |
|
g*****n 发帖数: 78 | 30 你的更可惜。Recruiter说5个都Postive但还是没过。看来最近这种情况不止一个两个。
easy |
|
R***U 发帖数: 1860 | 31 One thing I'm certain, 100% postive, that the tax rate will be a lot higher
than it is right now when I retire. And I don't expect anything from SSN,
GOV and 401K. |
|
d********9 发帖数: 58 | 32 我觉得可以买。 总原则是在长期美国生活,就需要投资房产市场。现在利率很低,快
和通胀利率差不多了, 贷到的钱相当于interest free。但我不建议买25W 的房子。你
可以买一个10W-15W的房子,是自己的月支出在买房和租房差不多。这样钱也不会浪费
在租金上。 孩子小,不会上学,没必要在好学区。
三年后,无论你去哪里,你都可以把现在的房子出租。 租金用来付mortgage。 等市场
转好,再买。如果租的好,还可以有postive cash flow。如果你搬走, 你可以请
property management company 帮你管理。别小看这个房子,将来也许就够孩子上大学
的费用了。反正你也要投资基金为自己养老和孩子教育。相比较房子是最保险的。
当然,说起来容易,操作起来也许会有问题。但花时间和精力是可以搞定的。 |
|
d********9 发帖数: 58 | 33 我觉得可以买。 总原则是在长期美国生活,就需要投资房产市场。现在利率很低,快
和通胀利率差不多了, 贷到的钱相当于interest free。但我不建议买25W 的房子。你
可以买一个10W-15W的房子,是自己的月支出在买房和租房差不多。这样钱也不会浪费
在租金上。 孩子小,不会上学,没必要在好学区。
三年后,无论你去哪里,你都可以把现在的房子出租。 租金用来付mortgage。 等市场
转好,再买。如果租的好,还可以有postive cash flow。如果你搬走, 你可以请
property management company 帮你管理。别小看这个房子,将来也许就够孩子上大学
的费用了。反正你也要投资基金为自己养老和孩子教育。相比较房子是最保险的。
当然,说起来容易,操作起来也许会有问题。但花时间和精力是可以搞定的。 |
|
C*****D 发帖数: 137 | 34 Yes, sounds right -- thinking postively :) |
|
d****t 发帖数: 372 | 35 这个教授本人是个jew, 却是个反华先锋! 大家应该反击它才对!
http://www.arthurhu.com/index/matloff.htm
Norman Matloff, The Hatchet Man of Asian Immigration
(Arthur Hu's Norm Matloff fan site) | New additions
Arthur Hu's Norman Matloff page
http://www.arthurhu.com/index/matloff.htm
2 Quick Intros to Matloff / Immigration Issues
Asian Focus April 1998: The Chinese Must Go! Matloff's Myth of a Programmer
Shortage
George Nichol's Other Matloff Fan Site (easier to navigate than this one!)
Where Matloff's been Published
How to C... 阅读全帖 |
|
y******n 发帖数: 8667 | 36 Neato is same price. Why not Neato? At least a lot of reviews are postive. |
|
s****a 发帖数: 9912 | 37 金武林其实把自己搞成了小丑,大概是有些才华,
但观众没看到,只看到很苛刻挑剔怪异,吴克群
也没必要那么较真,小金一家之言,不要把自己
乐观向上POSTIVE的形象搞坏了,别人NEGATIVE,也
跟着去斗去NEGATIVE,自己形象也就打折扣了,
真出专辑,我只买龚琳娜的。 |
|
G***G 发帖数: 16778 | 38 Yesterday my car couldn't start.
Friends came to help me jump start it. But I almost forgot
the correct process of handling the positive and negative cables.
My Friends did wrong finally. One postive end and one negative end
touched each other and got fires.
Later, I found all of my previous data about fixing car were deleted by me
accidnetly. For example, my note about fluid bleeding, engine mount
replacement,
water pump replacement, drum to disc conversion, etc. were all gone.
I don't know how... 阅读全帖 |
|
f******I 发帖数: 769 | 39
it's very important when reading the test, not the redness part, but only
the indurated part counts, and if there is any blister it would be read as
postive,
generally speaking greater than 15mm is positive for health individual,
greater than 10mm is positive for heatlhcare worker, people from high risk
area, and greater than 5mm is positive for patient that is immunocompromised
, such as HIV patient,
when your test is positive, you are required to have chest x-ray, if the
chest x-ray is negati |
|
c****f 发帖数: 1102 | 40 事情是这样的
1月13日 和往常一样去健身房 跑了大概4个miles 然后上去做深蹲 180磅 3租 每组10
个 硬拉 180磅 3租 每组10个
无任何不适 就是觉得有点累 然后跑去蒸了桑拿 大概15分钟左右 出来快虚脱了
回办公室吃饭 吃到一半想尿尿 结果尿的颜色和吃饭喝的可乐一个颜色. 然后吓死 去
了urgent care 憋着尿 因为觉得要尿检
结果接近6点才见医生 验了尿 当时尿里有个很小的blood clot 结果是 血3个+ 我记得
当时医生说还有蛋白 但是血压正常 无任何疼痛 尿路也没灼热感
医生给开了抗生素就打发我了. 早上起来上过厕所 没问题 中间没喝过水 12点去健身
就喝了大概500ml
在跑步以后
然后回家 再上测试 尿就是白色的了 啥都看不出
不过自己还是怕 正好换了PPO 就约了附近的urologist做检查 但是那是过去近一个半
礼拜了
然后做了各种检查包括 前列腺指检 验血 尿常规 urine cytology urine culture, 次
周一做了 CT abdomen & pelvis with/without contrast, 周三做了... 阅读全帖 |
|
n****s 发帖数: 150 | 41 有SSN两年,6张信用卡,creditkama查780多分,两个月前申CITI不过,原因是信用记
录太少。当时以为是刚搬家,这个地址住的时间短导致。最近AMEX提供免费查信用报告
的机会,一查Experian信用分是0,没有postive记录,只有几个hard pull记录,囧。
想找他家dispute结果非要我购买他的报告先,没见过这么无赖的。恳请大家支个招。 |
|
b********i 发帖数: 2645 | 42 同上 申个discover吧
我觉得银行除了看分数也会看你的卡的 就一张卡话 即使八个月记录还是很有限 但是
四五张卡八个月记录一定是更postive的...我最开始只有两张学生卡 几个月记录 分数
还好 但是申chase很难 但是拿到chase freedom之后后来再申别的卡都过了 八个月时
候还申到了AMEX |
|
D*l 发帖数: 340 | 43 LP怀孕37w多,其中经历不少,这里向大家汇报下,并求祝福
因为LP有卵巢多囊综合症,开始一直以为LP没有那么容易怀上。没有想到在LP刚刚毕业
,刚刚要拿到工作offer的时候得之怀孕了。幸好新工作的老板人好,一点也计较就给
了offer。然后就开始了和大家一样的,前三个月first trimester的食欲痛苦,吃什么
吐什么。好不容易熬到了第二个黄金trimester,LP又突然患上腿疼的毛病,以至于一
点路都不能走。开始以为是bb压迫到坐骨神经,但是当时才怀孕3个月啊,都说到了后
期才有这毛病。好不容易撑到28w了,突然发现LP宫缩严重,一小时内已经有8-10次了
,当时OB给做了个FFN test,结果竟然是postive。看到版上也类似情况的,但是结果
也都是neg啊。然后就是OB所建议卧床,除了吃饭上厕所,其他时间都得躺床上。就这
么在床上躺了一个半月,熬到了OB所谓的34w安全期。这里还得再感谢一下LP的非常
nice的老板,居然同意了她work from home一个多月。想着这下应该没事了,就算早产
也安全了。然后周围的人就都以为LP快要生了。35w产检的时候,OB也 |
|
m**y 发帖数: 18546 | 44 别紧张,我36周查的时候也是postive. ob说40%的人都有,对我们大人没有任何影响,
不过生产的时候怕孩子给带上就不好。她说现在啥都不需要干,等生的时候进了产房他
们给我antibiotics 就行了 |
|
u****i 发帖数: 113 | 45 一定要小心,我当时就是因为听医生的话,没太在意,结果提前一周破水,到了医院立
刻剖出来,宝宝还是有感染。医生不能确定具体是什么感染,但是由于我是gbs
positive,以防万一,就给宝宝输了一周的抗生素。现在宝宝一切正常,但是每次想起
他一出生就输液,手上天天扎着针管,还老要抽血检查,我就觉得很心疼。
GBS postive 可能导致提前破水。 |
|
m****i 发帖数: 1401 | 46 我36周5天内检发现GBS postive,开3指,结果第二天凌晨宝宝发动,到了医院被收留
了以后护士第一件问的就是GBS,然后马上就给我上IV,开到6指以后plug才掉的,十指
全开以后人工破水,push了两小时后紧急剖,因为宝宝头的位置不是很正,ob说我是糖
妈,不能上vaccum,而且有一小段时间测不到宝宝的心跳,所以就紧急剖了。
由于事情一件接一件,所以我一直到生完宝宝都没有担心过GBS这个事情。 |
|
e*********d 发帖数: 176 | 47 大家好!
我这个月的例假晚了两天还没来,早上用 pregnancy test 查了晨尿,结果显示为
postive。请问是否怀孕了呢?一般是什么时候开始看妇科医生呢?
我昨天做菜的时候用了绍兴厨用酒,吃了这种含有酒精的菜会影响胎儿吗?
现在很担心呀。
还有,我可以坐飞机吗?已经订了票11月要回国两周的。
还有什么要注意的吗?第一次怀孕,什么都不懂,也很紧张,希望姐妹们多给
建议。谢谢! |
|
a***8 发帖数: 4735 | 48 Yes, we all need to provide our children a postive environment to grow up,
give them a happy childhood to remember. I do think i spend more than with
my daughter. We don't want to do the same wrong things as our parents did to
us. |
|
a***8 发帖数: 4735 | 49 Hehe, same as my LG, his parents and grandma always compliment his IQ, and
tell him how good he is, so he is a happier and postive person. |
|
a***8 发帖数: 4735 | 50 Yes, we all should learn how to filter the negative comments, and only take
the postive comment.
At least our LGs are treating us good, and always encourage us to be good. |
|