M*******a 发帖数: 1633 | 1 A. Oh my god
B. Omicron
C. Omega
D. Obama |
|
|
|
|
b*****o 发帖数: 715 | 5 The big-O originally stands for "order of" ("Ordnung", Bachmann 1894), and
is thus a roman letter. Neither Bachmann nor Landau ever call it "Omicron".
The symbol was much later on (1976) viewed by Knuth as a capital omicron,[12
] probably in reference to his definition of the symbol Omega. The digit
zero should not be used. |
|
|
a***e 发帖数: 413 | 7 ‘正常的四则式子的运算’是不是用arithmetic expression tree更好做?或者先把它
转换为RPN,再做。Data structure and algorithm 那本书上有解释怎么转换。。。。
。。。。
关于Evaluate Reverse Polish Notation,知道RPN的特点或者说evaluate RPN的算法后
,更像一道细节实现题。
我在OJ上错了就是因为记不清怎么把string变成char,还有没注意isdigit只判断1个符
号,遇到(-4)就没把它当负数了。
int evalRPN(vector &tokens) {
int n = tokens.size();
stack numbers;
for (int i=0; i
{
int len = tokens[i].length();
char * tmp = new char [le... 阅读全帖 |
|
m**********e 发帖数: 1045 | 8 arrow notation of reflection : y=-2
(x,y)----> (x, ?)
1) ? equals
2) Is any general way for such reflection? |
|
w***n 发帖数: 58 | 9 骑驴找马告一段落 从了某preipo的 在此献上 面经
这次感觉coding题都不难 主要是design 甚至flag preipo的coding题比很多小的公司
都简单 但是design更难
flag 和 preipo的面经不能放上来 主要是不敢得罪这些签了NDA的
很多题目没有正确答案 在于想法 以及tradeoff
sift science (offer):
1 given a nxn chessboard, there are only pawns (white and black) on it. Say
one side is the start and its opposite side is the end. There is one white
pawn on the start row, what are the cells that could be reached on the end
side.
2 given a binary tree, implement sibling (each nodes sibling is the next
node of th... 阅读全帖 |
|
x*******6 发帖数: 262 | 10 贡献一个code,由于没有乘除,只需要记录括号内是否要根据加减改变数字的符号,不
需要使用reverse polish notation解法。
public static int eval(String s, int x) {
String[] exp = s.split("=");
int[] left = helper(exp[0],x);
int[] right = helper(exp[1],x);
return (left[0] - right[0])/(right[1]-right[0]);
}
private static int[] helper(String s, int x) {
boolean positive = true;
Stack re = new Stack();
re.push(false);
int num = 0;
int y = 0;
... 阅读全帖 |
|
s********r 发帖数: 4 | 11 First of all, Thank people for sharing their experience and questions.
I had interviews (Phone and onsite) with L recently.
Most questions were in the previous posts of MITBBS.
sqrt, WordDistanceFinder,Reverse Polish Notation.
The rumor that L using An Internal Interview Question Library may be true.
So make sure search and read all 面经 of L before your interviews.
Good luck everyone! |
|
c******n 发帖数: 4965 | 12 多谢
那个prefix polish notation expression evaluation 你怎么做的?
infix 超难, postfix 很简单, refix 看一眼觉得很难, 但con右边scan 基本跟
postfix 差不多
onsite |
|
o**********e 发帖数: 18403 | 13 SCALE 不一样。 这堆公司的烙印化是主要靠外包印度,
后门源源不断地爬进来三姑六婆。 这些媒体还曝光少。
H1B的烙印垄断也要闹,但是另外一个闹法。
老美已经开始了。 媒体在曝光 INFOSYS, TATA CS还有
很多小公司。
烙印骗子这样的。 一个骗子运100个H1B。
然后骗子“从良”继续行骗。
A notation in the federal court docket says Majety, "despite performing well
in interviews," has had difficulty finding employment whenever background
investigations reveal his indictment and guilty plea. But this month,
according to the court file, he was offered a $95,000-a-year job with a
company in Pennsylvania as a senior Java developer... 阅读全帖 |
|
o**********e 发帖数: 18403 | 14 别轻敌。让他犯错,要把招他包庇他的大烙印
给赶走。
烙印骗子这样的。 一个骗子运100个H1B。
然后骗子“从良”继续行骗。
A notation in the federal court docket says Majety, "despite performing well
in interviews," has had difficulty finding employment whenever background
investigations reveal his indictment and guilty plea. But this month,
according to the court file, he was offered a $95,000-a-year job with a
company in Pennsylvania as a senior Java developer.
http://articles.philly.com/2015-03-19/news/60254438_1_shell-com |
|
y**********a 发帖数: 824 | 15
the
Write
输入格式是 pre-order expression.
可以利用 "[" "]" 符号来构建 post-order (Reversed Polish notation)
然后就可以算了 |
|
d**z 发帖数: 3577 | 16
----------------------
大学时候来米国,就发现米疣叫兽和作家喜欢故弄玄虚。
常常把简单的东西说成复杂,并且故意忽略关键部分。
而藤校学生也较自负虚荣,不懂装懂,怕被其它同学看衰。
这些叫兽也深谙学生的心理弱点,故意让它们没学到。
但我一般很快就问到关键的东西,每次他们都非常不爽。
愚蠢虚荣的狗蝇被耍了还敬仰万分,赞叫兽们高深莫测。
当然,如果你熟悉盗魔经,这一切都不奇怪,还可以预见。
盗魔经信徒对狗蝇没有好意,尤其最忌聪明本领的狗蝇。
关于上面那本书的评论:
2 star)show all reviews
289 of 307 people found the following review helpful
2.0 out of 5 stars
Magisterial, and impenetrable
ByClinton Staleyon August 29, 2011
Format: Hardcover
I'm a professor of Computer Science at a respected teaching university, and
h... 阅读全帖 |
|
o*********r 发帖数: 203 | 17 For small input sizes (i.e. <= 1000), Programs in better algorithms don't
mean they will take less time time to run. In such cases, O(N^2) may even
run
faster than O(n). You may only see big difference for a very large input
sizes.
From Wiki:
--In mathematics, big O notation describes the limiting behavior of a
function when the argument tends towards a particular value or infinity.-- |
|
s******7 发帖数: 1758 | 18 图钉公司 thumbtack
电话:
1. Evaluate Reverse Polish Notation
2. constant space get median and mean, input stream, range [0, 10000), 用个
array[10000]就行了
Onsite:
1. design twitter search,面试官google出来的牛人老中,我虽然自己就做是
inverted index的,但答得还不不算太好。
2. 算search的TF/IDF, 题不难但是挺繁琐,search multiple strings, 返回一个总分
数,通过计算TF和IDF。我解释花了很多时间,白板字写得太烂了,最后还有点尾巴没
写完,就说了一下思路,也是老中面试官。
3. search 一个dict中所有前缀为一个string的word。Trie实现,laptop上跑过才行。
4. binary tree的serialization and deserialization. laptop上要能跑过才行。
5. 两轮跟manager, founder吹牛逼,我... 阅读全帖 |
|
|
o*q 发帖数: 630 | 20 # Title Editorial Acceptance Difficulty Frequency
1
Two Sum 28.3% Easy
292
Nim Game 54.4% Easy
344
Reverse String 57.3% Easy
136
Single Number 52.2% Easy
2
Add Two Numbers 25.6% Medium
371
Sum of Two Integers 51.6% Easy
4
Median of Two Sorted Arrays
20.4% Hard
6
ZigZag Conversion 25.6% Easy
13
Roman to Integer 42.7% Easy
237
... 阅读全帖 |
|
p*******4 发帖数: 6 | 21 Further Piano Studio 现开设特别教学课程:“视唱乐理课”。
此课程为钢琴及键盘乐器初学者提供一个系统集中的学习机会,使他们快速掌握视谱,
节奏练习,及基本乐理知识。 授课方式为集体授课,每班5人次。本课程分为两课时,
每课时一个半小时。授课重点:和声分析,视唱,视谱,练耳训练,节奏训练,乐理知
识及音乐历史。 两课时后,学生将掌握读谱技巧和基本音乐机构。
价格:$30/课时
预约及咨询:347.335.5926
Further Piano Studio will offer special subject: "MUSIC THEORY AND SIGHT
READING LESSONS" for all BEGINNERS. Class will be offered in Group way (up
to 6 students per class). These special lessons consist of two sessions.
Each session lasts about 1.5 hours. Class will go over with H... 阅读全帖 |
|
n****w 发帖数: 2379 | 22 我也只是听说是行规而已,倒也没有确证。
不过我确实书面通知agent了,还有bank of america 的notation letter。 |
|
s**x 发帖数: 7506 | 23 Buying a house for most people means assuming a debt that may take years or
even decades to pay off. Making an extra payment every year or six months
can shave time and money off the mortgage, but some financial experts
believe there are better things to do with the money.
Size
If you make an extra mortgage payment, it not only reduces the principal and
shortens the life of the loan, but also it shrinks the amount of interest
your lender can charge. Even though your monthly payments won't be any... 阅读全帖 |
|
s****9 发帖数: 1397 | 24 这是最新的回复,跟板上有的同学收到的一样
Response (A.Bhattacharya) 05/25/2011 01:24 AM
Dear ,
Actually, your account does not have the bonus ID 5889 linked. The one
linked to your account gives you First Year Fee-free benefit and 10,000
bonus points by spending $500.00 is the first three months of having your
Card. Yet we will honor your request.
The 10,000 bonus points will be credited to your account 8-10 weeks after
you have met the spend requirement of $500.00 within the first three months
of Cardmembership... 阅读全帖 |
|
O****e 发帖数: 5061 | 25 same here. Told me notated my account
recorded phone call and asked for Rep Name and ID, hope have a good luck. |
|
w*****1 发帖数: 6807 | 26 发了3封信之后,终于答应给我50K了,回信在下面。谢谢atuwh的帖,说的非常正确,
发第一封信是manager回的,坚决不给(估计manager没有月任务)。所以大家要多发几封
,给不同的部门,我这封是general inquiry的,大家都要有信心啊,实在不行就BBB,
我们有凭有据,你在申请页面没写清什么人qualify,责任在哪方很清楚。
http://www.mitbbs.com/article_t/Money/31561749.html
Response (AAA) 05/31/2011 01:38 AM
Dear BBB,
While we appreciate your interest in the offer (Bonus Id: 5894) you
mentioned, please understand that this is an offer only for solicited
Cardmembers. This promotion cannot be linked to your account due to this
restriction.
... 阅读全帖 |
|
j******8 发帖数: 316 | 27 回信如下:
Actually, your account does not have the bonus ID 5889 linked. The one
linked to your account gives you First Year Fee-free benefit and 10,000
bonus points by spending $500.00 is the first three months of having your
Card. Yet we will honor your request.
I see that 10,000 points have already been credited to your account. I
have forwarded a request to our backend to issue the balance 40,000 bonus
points under bonus ID 5889. As soon as I get an update, I will write back
to you with the upda... 阅读全帖 |
|
b********d 发帖数: 644 | 28 在sd论坛看到的,拿到了请别忘了给我发给包子
原帖链接
http://slickdeals.net/forums/showthread.php?t=3095414
You can apply with any link you want. When you call to activate the card ask them to apply whichever promo you want to use to your card. (this may take one or more attempts) You can also do this with their secure message center but you must have an established online account and register your new card on it.
The rep will notate your account with the offer and when you meet the spending requirements you can message ... 阅读全帖 |
|
d*******d 发帖数: 502 | 29 看不出来,我打了电话,那边是给我notated了
但是账户没啥显示 |
|
k*******0 发帖数: 133 | 30 拿到卡先电话说要match5985,然后rep说code过期了 blabla一大堆 最后说给我notate
好了 等消费到了就行
过了一天打电话去match6664,第一个rep说已经有promotion不能再apply,blabla又是
一大堆,说两个是separate promotion,不行,失败,第二次打进去,rep很麻利给加上
了 哈哈~~~~~ |
|
|
|
|
|
y*****e 发帖数: 1472 | 35 Notation doesn't mean anything. They can decline to honor if anytime they
want. |
|
n****t 发帖数: 158 | 36 Did they notated promotion code on your account before? |
|
x*******g 发帖数: 523 | 37 背景介绍:
2个月前在版上求愿意平分AMEX SPG referral bonus (5K, 价值约$100)的referral
link. 通过一位热心的老id的referral link很快通过了申请. 但至今快2个月, 自己已
经拿到25000点, 但推荐人则仍未拿到那5000点. 而且推荐人和AMEX联系, AMEX反而说
我不是用他的referral link申请的卡, 不愿意给那5000点. AMEX居然耍赖皮.
我这方面尝试的解决办法:
刚才我自己给AMEX发信问为什么推荐人还没有收到点数, 请他们帮忙调查. 并附上了当
时收到的referral email 中的referral link. 很快收到AMEX回信如下:
Dear mitbbs:xiongcong,
Yes, do not worry. I will resolve your inquiry right away!
I do confirm that your Card was opened under the referral program and
it is
properly notated on y... 阅读全帖 |
|
n*******y 发帖数: 3337 | 38 Today, 1:25 pm #78
Happy
FlyerTalk Evangelist
I personally know a case similar to yours that happened last year, but the
loss of UR pts was to a much LESSER degree. Yes, Chase gave the person a
check for her 50K Sapphire bonus even though the person was actually a bit
short of meeting the spend requirement, after the letter to the Exec Office
pleading for the re-opening of the Sapphire card so the person could finish
the spend requirement to earn the bonus. Chase said No, but simply gave t... 阅读全帖 |
|
z****l 发帖数: 5282 | 39 ☆─────────────────────────────────────☆
pking (pking) 于 (Fri Apr 27 00:21:16 2012, 美东) 提到:
没有一个跟chase argue成功的吗? 老中除了拿bonus,信用记录用卡啥的应该都算良
民。chase啥都不说直接关卡,然后给信用记录上添一条负面评价,就完事了?
信用记录上好像给的是 Delinquency or other derogatory relationship with our
bank.
信用记录会存在两年?有没有fight过的?
☆─────────────────────────────────────☆
sapphirewing (Audrey的树) 于 (Fri Apr 27 00:25:35 2012, 美东) 提到:
你这是上了chase黑名单 和信用记录没关系
记录上就算没了 chase那里还记着仇
☆─────────────────────────────────────☆
sapphirewing (Audrey的树) 于 (Fri A... 阅读全帖 |
|
b***i 发帖数: 1099 | 40 offer内容:把Discover随便什么卡转成Discover Miles卡,在2月28日前花$2500,拿2
万bonus miles。
没有收到targeted offer,就用在版上看到的public link把Discover More转成了
Discover Miles卡。收到卡激活时,跟cs确认这个offer,那个cs找不到,就把电话转
给了manager。manager很nice,问了我具体offer是什么,然后说,她会notate我的帐
户,会在3月1日monitor帐户,确认我花了$2500。
今天出了新的账单,2万点到帐。 |
|
s*********t 发帖数: 16647 | 41 打电话问问fid他们,装装可怜,就说家里有事,急着用钱只能转出,而且记错了,以
为是6个月,也许碰到好的csr给个法子,也许能还你mileage,再不济和他说说,说你
现在重新存回来,让他写个notation,你再多存3个月,能否当做meet the
requirement了。反正强调你是无意的。。。
死马当活马医,当然如果你觉得对方找不到你,也可以不用管负的账号,再开一个就是了 |
|
l******g 发帖数: 6771 | 42 你可以把receipt #给他们,让他们notation,这样有据可查吧
eventually |
|
z*****3 发帖数: 1793 | 43 看见版上很多人介绍这张卡,于是就申请了。最近回国打算试验一下,结果取不出来钱。
我在中行,建行,工行等待VISA的ATM机器上面全部试过,余额永远为0.
PS.出行钱已经给fidelity打过电话设置了travel notation。
求大神拯救,没RMB在国内寸步难行。 |
|
p********2 发帖数: 9939 | 44 我说我要打电话!她说,我要put notation到你的account上,不管你干什么,no discount
. 我吐血了. |
|
c********d 发帖数: 698 | 45 Just got this Five Little Monkeys book for $4.4. well worth the price (196
pages, many stories) and kid just loves it.
http://www.amazon.com/Little-Monkeys-Storybook-Treasury-Story/d
This 20th-anniversary treasury features a special introduction and five full-length picture books—Five Little Monkeys Jumping on a Bed, Five Little Monkeys Bake a Cake, Five Little Monkeys Sitting in a Tree, Five Little Monkeys with Nothing to Do, and Five Little Monkeys Wash the Car—as well as a lesson on how to dr... 阅读全帖 |
|
n****e 发帖数: 226 | 46 四岁弹成这样很不错了,手形好像不够curve
还有,孩子的记性很好,不看谱子弹
但我女儿的老师特别强调看谱子,因为光记notes是不够的
还有其他的music notation, 比如 dynamics |
|
c*******r 发帖数: 334 | 47 因为女儿所在的Wind Ensemble 要与Orchestra 合演一支曲子,我们第一次去看了学校
的 Orchestra Concert 。(原谅我用英文吧,我实在翻译不好这些名词)
先是 6年级的学生演奏。接下来是 Chamber Orchestra 的演出。Chamber Orchestra
是6、7、8三个年级里挑出来的学生组成的。听着看着,然后发现,这其中,黑头发黄
皮肤的占大多数,得有三分之二。
再下来是7、8年级合演。舞台上都坐满了,总共将近90个学生,很壮观哪。Violin I,
Violin II, Viola,Bass, Cello。很好听。然后7 年级的学生离开,一个8年级的
女生 Violin 独奏,有钢琴伴奏,演完之后掌声雷动,很多听众站了起来在鼓掌,然后
又有很多人也陆续跟着站起来鼓掌,有人给这女生献花。接下来就是Wind Ensemble 走
上舞台坐好,与Orchestra 合演了一支曲子。然后是8年级的学生演奏。最后一曲是7、
8年级合演的。
整个是近1.5 个小时的音乐会。真的感觉很不错。下个周四,是Band Concert 了,包
括Band,J... 阅读全帖 |
|
t*******r 发帖数: 22634 | 48 另外狭义 place value (positional notation)就是这里小学
低年级的玩意儿。但是按认知心理学的很多说法,娃不理解犯错,常常
因为没有跟实践经验联系起来的缘故,导致前面那个例子没能正确理解
position derived value 这个 concept。这个就是为啥俺举日常
经验作为例子的缘故。。。当然,要是娃连日常经验都没有建立。。。好像
会比较难。。。 |
|
t*******r 发帖数: 22634 | 49 或者再给个最最简单的接近的用 pseudo language 心算的例子。这个
例子太简单啦,最最简单的 place value 哦。。。今天上班运气真好,
啥符号运算高维想象都不需要,只要算下面这个
14 + 8 = ?
不过稍微有点变化,这个代码里是十六进制(码工么,能不会十六进制么?)
也就按正规码工 notation 的话,是这样:
0x14 + 0x8 = 0x?
这里这个 14,就算中文,谁能理解/念成“十四”么?那个“1”可不是“十”,
是“十六”! |
|
c**0 发帖数: 535 | 50 布置作业,监督作业完成情况和进展;练习写notations,这个会因孩而异,有的很快
习惯,一般都要坚持练上一会;练习使用棋钟;督促下完后复盘;准备参加各种比赛,
吃喝拉撒,心理辅导,等等。別忘了本职工作,专心挣钱养娃! |
|