由买买提看人间百态

topics

全部话题 - 话题: abcdefg
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
A*********r
发帖数: 564
1
来自主题: JobHunting版 - One Phone Interview Problem
我怎么觉得没有那么复杂啊,貌似复杂度就是sort的复杂度 。。
用楼主的例子:
seq1: ABCDEFG
seq2: DBCAPFG
可以得到seq2中每个字母在seq1对应的坐标依次为, O(n)可以实现吧。
3 1 2 0 -1 5 6
P字母没有在seq1里面出现,所以标记为-1, 然后sort这个坐标组里面足用-1分割开的
每个段,变为
0 1 2 3 -1 5 6
然后找最长的strictly increment 的一组数就可以了。。
关于这个间隔sort的可行性和复杂度,可以再讨论一下。。

(
c*******w
发帖数: 63
2
来自主题: JobHunting版 - One Phone Interview Problem
Counter Example:
Seq1: ABCDEFG
Seq2: ABXCDYZ
maps/hashes to b1= (000000) 00000000000000000001111111
maps/hashes to b2= (000000) 11100000000000000000001111
Is the answer: ABCD? It is not correct.

letters
h**k
发帖数: 3368
3
来自主题: JobHunting版 - one amazon interview problem
Give you two sequences of length N, how to find the max window of matching
patterns. The patterns can be mutated.
For example, seq1 = "ABCDEFG", seq2 = "DBCAPFG", then the max window is 4. (
ABCD from seq1 and DBCA from seq2). 起始位置无需相同。
这个我知道有O(nlogn)的算法,不知道是否有O(n)的算法。
j*****g
发帖数: 223
4
总结一下面试的准备活动,希望有帮助.
==================== AREAS/TOPICS to study/prep/review ====================
复习的东西还挺多的。比不过刚毕业的呀 :), 脑子不好使了,东西也差不多忘光了...
嘿嘿....
• Sorting
o Bubble/select/insertion/counting/qsort/heap/merge/bst
o Time/space complexity analysis
• Caching design
o Replacement policy (LRU, LFU, NRU, etc…)
o Efficiency/complexity/performance
o Distributed cache
o Hashing
• Multi-thread
o Locking/mutex/semaphore/critical sec... 阅读全帖
j*****g
发帖数: 223
5
总结一下面试的准备活动,希望有帮助.
==================== AREAS/TOPICS to study/prep/review ====================
复习的东西还挺多的。比不过刚毕业的呀 :), 脑子不好使了,东西也差不多忘光了...
嘿嘿....
• Sorting
o Bubble/select/insertion/counting/qsort/heap/merge/bst
o Time/space complexity analysis
• Caching design
o Replacement policy (LRU, LFU, NRU, etc…)
o Efficiency/complexity/performance
o Distributed cache
o Hashing
• Multi-thread
o Locking/mutex/semaphore/critical sec... 阅读全帖
z****o
发帖数: 78
6
来自主题: JobHunting版 - 问一道google题
1. use an integer Mark[i] to represent the character set for word[i] in the
dict; use lower 26 bits, each represent whether a certain character appears
in the word.
(Mark[i] & Mark[j]) == 0 means word[i] and
word[j] are disjoint.
2. at the mean time of calculating the Mark[i], we update the maximum-length
word index in
Longest[(~Mark[i]) & 0x03ffffff];
this means eg.
if word[i] = "abcdefg........uvwabcdefg.....uvw", Longest[(~
Mark[... 阅读全帖
c****n
发帖数: 21367
7
来自主题: JobHunting版 - 感觉老中的主流价值观很错乱啊
改为说“保护规矩是他生存的基础吧”,不一定要守规矩,偷偷的破坏无所谓
台面的破坏是不行的。:)
说句实在的,来美国的中国人里,起码一大半是愿意有个难得的机会就
舔舔abcdefg的屁眼换个绿卡换个身份的吧?在google当个码农得是在美国
的华人里top 10%的收入水平了,你觉得一个普通人还要什么样的前途?:)
你讲的这些理由太冠冕堂皇,不太实际。
g*********s
发帖数: 1782
8
来自主题: JobHunting版 - 请教几道经典题
1. word edit distance.
i know it's dp. but what are the legal edit moves?
say, "abcdefg" -> "gabcdef", the distance is 2 or not?
if it's allowed to delete/insert @ any pos, we just delete @ tail and
insert @ head. but the dp recursion definition seems not to cover this
case.
2. longest palindrome substring.
O(N^2) is simple. the optimal is O(N) with suffix tree + lca? anyone can
give a clear description of this solution?
r*******e
发帖数: 7583
9
来自主题: JobHunting版 - 请教几道经典题
1. "abcdefg" -> "abcdef" -> "gabcdef", the distance is 2
deletion and the addtion are counted as 2 edits, not a single one
2. one can build a (basic) suffix tree for the string txt1$txt2#, where `$'
is a special terminator for txt1 and `#' is a special terminator for txt2.
The longest common substring is indicated by the deepest fork node that has
both `$...' and `...#' (no $) beneath it.
The longest palindrome of txt[1..n] can be found in O(n) time, by building
the suffix tree for txt$reverse(t... 阅读全帖
g*********s
发帖数: 1782
10
来自主题: JobHunting版 - 请教几道经典题
1. word edit distance.
i know it's dp. but what are the legal edit moves?
say, "abcdefg" -> "gabcdef", the distance is 2 or not?
if it's allowed to delete/insert @ any pos, we just delete @ tail and
insert @ head. but the dp recursion definition seems not to cover this
case.
2. longest palindrome substring.
O(N^2) is simple. the optimal is O(N) with suffix tree + lca? anyone can
give a clear description of this solution?
r*******e
发帖数: 7583
11
来自主题: JobHunting版 - 请教几道经典题
1. "abcdefg" -> "abcdef" -> "gabcdef", the distance is 2
deletion and the addtion are counted as 2 edits, not a single one
2. one can build a (basic) suffix tree for the string txt1$txt2#, where `$'
is a special terminator for txt1 and `#' is a special terminator for txt2.
The longest common substring is indicated by the deepest fork node that has
both `$...' and `...#' (no $) beneath it.
The longest palindrome of txt[1..n] can be found in O(n) time, by building
the suffix tree for txt$reverse(t... 阅读全帖
g**u
发帖数: 583
12
来自主题: JobHunting版 - MS的 on site面试,求bless
面的是sdet,说下自己记得的题目,求祝福。
一开始recruiter就讲解面试注意事项,讲了如果从上一个interviewer那里得到提示的
话,可以应用在下一个interviewer的问题上;需要展现passion和learning的capacity
etc。
面试的第一个是找规律,并且实现之。例如
a -->a
ab-->ab
abc-->acb
abcde-->aebdc
abcdefg-->agbfced
仔细分析之后其实是一个循环移位的变体,分析出来题目之后,其实coding不难。
有一个题目是找规律,然后code实现之(不明白为什么这些interviewer都不说清题目
,需要找规律);仔细分析之后,是把所有的基数放左边,偶数放右边,但是原本的顺
序不变(1在3的左边的话,返回的结果要保持这个顺序);马上想到是的quick sort里
面的head和tail的指针的方案,但是order没法保证,想了半天in place的方法,然后
尝试可否create a buffer;说是可以,那么问题就很简单了, scan 2 times就可以了
(其实in place也可以,不过最... 阅读全帖
l****4
发帖数: 486
13
amz onsite挂,linkedIn二电面挂,几家startup都挂,samsung弱offer
bg: mis明年5月毕业,出来前3年dev经验
amz: oncampus一轮之后第三天就让onsite。 没有太认真准备,但是感觉挂的原因不在
我自己。第一面的interviewer迟到10分钟,然后领着我赶向另外一个building的
interview room. 走过去时间已然过去15分钟了,然后我快走后就一直冒汗,再加上紧
张所以自己状态本身就不太好了,题目是解数独,最最郁闷的是interviewer完全不沟
通问问题就哼哼哈哈,然后就自己写自己的,我越做越郁闷。。 后面几面感觉都还不
错,都是将要进的Team member,最后一面是manager,已经问package了。 回来第二天接
到电话,被挂了。 分析了一下第一面应该就是所谓bar-rasier,一票否决。 应该有点
stree interview 的意思,当天真是各种事情凑一起了,实在没办法。
记得的题:java gc explain,然后写gc算法。然后就是翻转单链表,in pair: 比如
ABCDEFG ... 阅读全帖
w***y
发帖数: 6251
14
来自主题: JobHunting版 - 发我遇到的面试题FLG
我就不一一说是哪个公司的题目了:)
1. write a function to calculate the cube square root of x
2. given a set of elements, all possible subset
3. prefix search -- given a set of words, and a prefix, find the words
starting with the prefix
4. anagram bucket - anagram means different words with the same character
set, e.g., 'cat' and 'act' are anagram . Given a set of words, group them by
anagram.
=========================================
1. iterator with filter, 跟这个帖子的 2A一样
http://www.mitbbs.com/article_t/JobHunti... 阅读全帖
p*****2
发帖数: 21240
15
来自主题: JobHunting版 - F家面经

还有a-z也是一个符号吗?
比如a-z+ match a, az, z, abcdefg?
r****m
发帖数: 70
16
来自主题: JobHunting版 - 分享Imo电面题
一面
You are given two words A and B of the same length from a dictionary D. You
can only access this dictionary through a function boolean isInDictionary(
string word). We are going to make a word ladder. We start at A, we end with
B, and change one letter at every step.
All words are over the alphabet [a-z]. |A| <= 10 characters. |D| <= 10 000
000 words.
We are looking for a shortest word ladder, if any exists. If many exist,
return any one of them.
A=dog, B=let
D={dog, let, log, leg, puzzle, bi... 阅读全帖
r****m
发帖数: 70
17
来自主题: JobHunting版 - 分享Imo电面题
一面
You are given two words A and B of the same length from a dictionary D. You
can only access this dictionary through a function boolean isInDictionary(
string word). We are going to make a word ladder. We start at A, we end with
B, and change one letter at every step.
All words are over the alphabet [a-z]. |A| <= 10 characters. |D| <= 10 000
000 words.
We are looking for a shortest word ladder, if any exists. If many exist,
return any one of them.
A=dog, B=let
D={dog, let, log, leg, puzzle, bi... 阅读全帖
a*******3
发帖数: 27
18
来自主题: JobHunting版 - 分享Imo电面题
T = abcdefg
S1 = abc yes
S2 = ag yes
S3 = ga no
S4 = aa no
看楼主给的example,S2,不是match substring,而是subsequence,所以suffix tree
在这里没有用的
j*****y
发帖数: 1071
19
这个 好像不对
比如
Abcdefg
Acdefgh
s1[0] == s2[0]
p*****2
发帖数: 21240
20
require 'set'
class Node
attr_accessor :set, :hm
def initialize
@set=Set.new
@hm={}
end
end
class Trie
def add s, ss
node=@root
node.set << ss
s.length.times do |i|
node.hm[s[i]]=Node.new if not node.hm.has_key?(s[i])
node.hm[s[i]].set< node=node.hm[s[i]]
end
end

def dfs root, s
return if root.set.size<2
@ans=s if s.length>@ans.length
root.hm.each {|k,v| dfs(v, s+k)}
end

def lcs s1,s2
@root=Node.new
@ans=''
... 阅读全帖
n******r
发帖数: 869
21
实在太落后了。看了解法还是不会写。
Design an algorithm to print all permutations of a string. For simplicity,
assume all characters are unique.
Test String: abcdefg
Case “a” --> {a}
Case “ab” --> {ab, ba}
Case “abc” --> ?
This is the first “interesting” case. If we had the answer to P(“ab”),
how could we generate P(“abc”). Well, the additional letter is “c”, so
we can just stick c in at every possible point. That is:
merge(c, ab) --> cab, acb, abc
merge(c, ba) --> cba, bca, bac
Algorithm: Use a recursive algorit... 阅读全帖
p*u
发帖数: 136
22
来自主题: JobHunting版 - 分享2个电面题目
电面imo.im被问到的2个题目,45分钟,都需要写代码出来,结果是挂了。
问题二略微有点变态!
问题一
Subsequences
------------
You're given a large string T. And a stream of smaller string S1, S2, S3 ...
Determine whether Si is a subsequence of T.
|T| < 10 000 000
|Si| < 100
alphabet is 'a' - 'z'
T = abcdefg
S1 = abc yes
S2 = ag yes
S3 = ga no
S4 = aa no
--------------
问题二
Rectangles
----------
their is a window of size WxH contains Number of existing rectangles with
given (xi, yi, wi, hi).
Where to place a n... 阅读全帖
g****o
发帖数: 547
23
来自主题: JobHunting版 - 分享2个电面题目
应该对T做预处理,加快后面每次query的速度
我是这样想的
开矩阵index[255][|T|+1] (如果只有小写字母那就index[26][|T|+1])
index[x][y]表示T字符串中在位置y以后的下个x字符的index,如果没有就存-1
假设T=abcdefg, S=ag
S的第一个字符是a,就看index['a'][0]的值是1.
第二个字符是g,就去看index['g'][1] (1是由index['a'][0]得来的)的值是7.
扫完S,这个过程中没有出现-1,答案就是yes,否则是no
这样预处理时间o(T),每次query时间o(S),不必每次都扫一遍T.
b***p
发帖数: 700
24
来自主题: JobHunting版 - 请教一道google的数组遍历题
这个是python solution, worst case 是O(n^2). 比普通的Greedy Solution, 有两个
改进
1. 计算bit map of word, and AND operation to check if there is common char
2. 遍历是从最长的word开始
还有一个可以改进的地方是,利用元音字母,用word_len+vowel 作key,减少不必要
的compare
class DiffWordsMaxLenProduct:
def __init__(self):
# dict: word -> word char bit map
self.dict_word_bit = {}
# dict: word_len -> [word1, word2, word3...]
self.dict_word_len = {}
#
# compute the bit map of word char
#
def bit_word(self... 阅读全帖
A**H
发帖数: 4797
25
假设有1000个等长的字序,比如说每个字序100个0或者1吧
我想找出哪些位置可以使得其中一个字序x在这1000个字序中成为独特的
比如说
在位置111,只有abcdefg和x一样
在位置222,只有abcdhijk和x一样
在位置333,只有cfgopq和x一样
那么只要位置111/222/333就可以确定x了
多谢
j*****8
发帖数: 3635
26
来自主题: JobHunting版 - 讨论个狗狗的题?
字符串匹配 -> anagram -> 结合起来 不用完全的字符串匹配 只要是anagram就算成功
也就是有两个字符串s和word word和s的某个子字符串是anagram就行。比如 abcdefg,
那么abc acb cab 都算是一个match 当然不一定要从最开始 def fed dfe 也算 大概
就这样
怎么做到 时间O(n) 空间 O(n)
L********e
发帖数: 159
27
来自主题: JobHunting版 - 讨论个狗狗的题?
用个hash table track一下letter count的delta就可以了吧。
[在 jingi08 (骑驴找马中) 的大作中提到:]
:字符串匹配 -> anagram -> 结合起来 不用完全的字符串匹配 只要是
anagram就算成功 也就是有两个字符串s和word word和s的某个子字符串是anagram就行
。比如 abcdefg, 那么abc acb cab 都算是一个match 当然不一定要从最开始 def fed
dfe 也算 大概
:就这样
:...........
y*********e
发帖数: 518
28
来自主题: JobHunting版 - 讨论个狗狗的题?
这个用后缀树解。把s丢到一个后缀树里面,从root开始,s的每一个substring都是一
个leaf结点。
然后把word也丢进后缀树里面,word的每一个anagram都是一个leaf结点。
最后遍历所有的leaf结点,若该结点既是s的substring又是word的一个anagram,就返
回True。
后缀树用掉 O(len(word) + len(s))的空间,创建和遍历需要O (len(word) + len(s))
的时间。

abcdefg,
G*B
发帖数: 1380
29
来自主题: JobHunting版 - FLG为什么包含Linkedin?
人家hudge fund早摔你们abcdefg几百街,还到那排名呢
b*****g
发帖数: 46
30
来自主题: JobHunting版 - read4 vs read4II 到底啥区别?
举几个例子你就明白了。
Read4:
Buf=“abcdefg”
每个test case只会调用你写的函数一次,比如
read(3), 返回“abc”,这个case 就结束了
read(3), 还是返回“abc”
Read4 II
每个test case可能会调用你写的函数多次
同样的buf
read(3), 返回”abc”,再read(3), 这次要返回“def”
p*******m
发帖数: 20761
31
Access control bypass in Hikvision IP Cameras
From: Monte Crypto
Date: Tue, 12 Sep 2017 04:19:00 +0200 (CEST)
Access control bypass in Hikvision IP Cameras
Full disclosure
Sep 12, 2017
Synopsis:
---------------
Many Hikvision IP cameras contain a backdoor that allows unauthenticated
impersonation of any configured user account.
The vulnerability has been present in Hikvision products since at least 2014
. In addition to Hikvision-branded devices,
it affects many whi... 阅读全帖
B**********e
发帖数: 243
32
来自主题: Living版 - 中国签证可以让人代办嘛?
谢谢。 abcdefg


: 可以.

z****l
发帖数: 5282
33
来自主题: Money版 - [合集] 说说美国的信用制度
☆─────────────────────────────────────☆
yumen001 (虞梦) 于 (Sat Jul 24 00:30:29 2010, 美东) 提到:
版上看到一篇《求助!!!!讨债公司~怎么办!!!》的帖子,深有感触,想跟大家
探讨一下美国的信用制度,以及我们的应付之道。
按道理说信用制度的建立是件大好事,方便大家有一个翔实客观的报告来查证彼此的信
用,但是实际执行当中由于种种原因,几乎快变成美国公司、医疗机构等乱收费的帮凶
了。
说一个简单的例子,前不久去dentist看牙,必须要prepaid才能开始治疗,counter的
accountant给详细计算了保险报销、自付项目,然后让我按照他们的计算方式预付了我
的自付额,按照他们的算法,我预付的数目比以后保险报销下来后我自付的部分只多不
少,这将是我可能自付的ceiling的费用了,言之凿凿,让我放心治疗。结果搞完牙齿
后两个星期,保险公司的EOB寄到了,牙医的很多治疗项目都不能报销(比如使用了保
险公司不cover的crown材料,filling的材料不对等等),我需要支付的数额比已经预
... 阅读全帖
z****l
发帖数: 5282
34
来自主题: Money版 - [合集] cash back最强大组合
☆─────────────────────────────────────☆
newgumin (新股民) 于 (Sat Oct 16 19:21:22 2010, 美东) 提到:
我能想到的,Chase Reward Plus 5%的油菜药和Schwab 2%的everthing。这个最强了吧
?用着也省事。
或者再加个Amex Blue Cash,在Costco用,还有买大件电器延质保。
☆─────────────────────────────────────☆
zengdl (方鸿渐博士) 于 (Sat Oct 16 21:06:41 2010, 美东) 提到:
见笑了
Driver's Edge 3% potential 6% 油菜药
Schwab, Fidelity, BOA, Orchard 2% on everything
Discover 5% if available
Citi Forward 5% at Amazon, Restaurant
at Costco, Fidelity + Executive: 4%
Not using Chas... 阅读全帖
z****l
发帖数: 5282
35
☆─────────────────────────────────────☆
mouseroyal (mouseroyal) 于 (Fri May 20 14:23:27 2011, 美东) 提到:
login账户,然后secure message->memebership awards->program info and
definitions:
Hello,
Glad to write to you. I have a question regarding the reward. I just got
my Premier Rewards Gold Card and I've never had a charge card before. I
learned that there is a promotion going on whose bonus ID is 5894 , and
from that promotion I can get 75,000 points after spending $500 in three
months. That's better... 阅读全帖
z****l
发帖数: 5282
36
☆─────────────────────────────────────☆
economizer (economizer) 于 (Sat May 7 12:18:27 2011, 美东) 提到:
2% on everything, 凑满$300 reward 返$375,没有年费
这个如何?做个长期备用卡
☆─────────────────────────────────────☆
lovebeckdy (lovebeckdy) 于 (Sat May 7 12:19:09 2011, 美东) 提到:
link

☆─────────────────────────────────────☆
economizer (economizer) 于 (Sat May 7 12:30:22 2011, 美东) 提到:
是邮寄的邀请,网上还没看见
☆─────────────────────────────────────☆
lovebeckdy (lovebeckdy) 于 (Sat May 7 12:31:21 2011, 美东) 提到:
... 阅读全帖
z****l
发帖数: 5282
37
☆─────────────────────────────────────☆
martell (martell) 于 (Sun Dec 18 14:47:04 2011, 美东) 提到:
发信人: martell (martell), 信区: Automobile
标 题: Amex primary租车保险经历
发信站: BBS 未名空间站 (Sun Dec 18 14:46:37 2011, 美东)
看到版上讨论Amex的primary租车保险https://www295.americanexpress.com/premium
/car-rental-insurance-mvt/home.do),把我的一次经历贴出来供大家参考
1.通过hotwire租的national的车,用amex付钱
2.晚上12点在高速上,太黑没看见一个大坑,结果撞过去,前胎暴胎,前bumper严重挂花
3。电话通知租车公司,和报告amex
4. 一个月后收到租车公司帐单:
Damage:$710
Administration fee: $100
Loss of Use: $45
Towing... 阅读全帖
s********n
发帖数: 248
38
来自主题: NextGeneration版 - S,G,E家奶粉包的certificate下载
发到我为宝宝版的MM建立的邮箱里了,大家自己去下载吧!
X******[email protected]
password: abcdefg
PS: 发现有人利用这个为大家建立的邮箱做月子保姆的广告!很气愤!跟本人无关!
V*****D
发帖数: 466
39
来自主题: NextGeneration版 - 请推荐一位月子保母
最近收到许多XJ的询问有关月嫂的联系信息,我发了一个邮件到XINXIN的小信箱。请自
取,恕不一一作答了。
x******[email protected]; password: abcdefg
声明:这些联系信息来源多样,我还没有用过。无法推荐。请自查!
d**********m
发帖数: 29
40
来自主题: NextGeneration版 - 带宝宝回国,发现中国特色的宝宝副食
有看成分。我也是很在意的人。面条的成分是鸡蛋,面粉。营养液粉末成分是维生素
ABCDEFG牛磺酸blabla+猪骨汤粉。(我买的骨头汤味道的,其实根本就没有味道)
V*****D
发帖数: 466
41
http://www.mitbbs.com/article_t/NextGeneration/33366169.html
最近收到许多XJ的询问有关月嫂的联系信息,我发了一个邮件到XINXIN的小信箱。请自
取,恕不一一作答了。
x******[email protected]; password: abcdefg
声明:这些联系信息来源多样,我还没有用过。无法推荐。请自查!
加州行市到挺稳定,单胞胎$100/day+tips; 双胞胎$3500~4000+tips/26天。包括了代
理费但不包机票。
w*********r
发帖数: 488
42
来自主题: NextGeneration版 - 我是不是大妈心态了
带全家出去玩,本来是想给爸爸妈妈放松一下。结果一个周末回来,到了家个个都绷着
个脸。我妈跟我爸俩在外面就吵上了,当着客人的面就哭起来,说自己犯贱管我爸的闲
事。她一般都是先骂人,然后自己再哭。我爸和我妈在对付老公的时候又站成一条线。
老公叫他们不要把车门大敞四开,附近蚊子很多。他们俩坚持开车门,结果钻进车来得
蚊子咬了一路。他俩都不招蚊子,蚊子就咬我和我老公了,不仅在车里,还钻家里来,
晚上睡觉又得挨咬。
老公觉得出门太累,我爸妈又比较固执,回到家我妈做现成的饭也爱理不理,整个旅途
他都不愿意陪他们,觉得累了给谁都没好脸,包括我爸妈和我。
就宝宝最高兴。妈妈先被姥姥数落,跟孩子爸爸说话他也爱理不理。妈妈筹备整个旅途
,几天都没睡好,订旅馆,行程,准备宝宝的东西,大人的换洗衣服,药品,急救包,
要带去的做饭的食物水调料厨具。去了让爸妈玩,自己在房间看孩子。老公是甩手掌柜
,只负责开车。就这样还说累,懒得讲话,跟爸妈出去玩没意思,爸妈有ABCDEFG等毛
病。
妈妈觉得很累很累很累,他们都觉得爱我,可是为什么我没有被人爱护,理解,体谅的
感觉?
r******e
发帖数: 1847
43
来自主题: NextGeneration版 - 深夜笑话N则ZZZZZ
1、三只小兔拉便便
第一只是长条的 。
第二只是圆球的。
第三只居然是三角形的 。
问怎么回事,它答:我用手捏的。
2、小孩问妈:“用ABCDEFG怎么造句?”妈:“A呀!这B孩子C家的 呀?光着个脚站在
D上,EF也不穿,还露着小GG!
3、A:我说话从来不说第2遍
B:什么?
A:我说话从来不说第2遍
4、小白兔遇到大灰狼
小白兔说大灰狼大灰狼 你快问我是不是小白兔
你快问啊快问啊!!!!
大灰狼说 你是不是小白兔啊?
小白兔很高兴 是的是的我是的!!!
然后
小白兔又说 大灰狼大灰狼 你快问我是不是长颈鹿
你快问啊快问啊!!!!
大灰狼很无奈 好吧。。。那。。。你是不是长颈鹿啊
小白兔朝他后脑勺一巴掌 你个笨蛋!
我都说了我是小白兔了!!!
5、从前从前,, 苹果跟梨子是一对好朋友,, 可是后来苹果要搬家了, 于是它们两个相
约十年之后回到这个地方相聚
结果十年之后,, 苹果再次回到这个地方,,可是过了很久, 梨子还是没有... 阅读全帖
d******3
发帖数: 279
44
来自主题: NextGeneration版 - 问一个关于尿布Coupon的问题
sunbirdxin (想想和他他的妈妈) 于 (Sat Mar 13 13:51:36 2010, 美东) 提到:
尿布:
品牌:
尿布有两大品牌,HUGGIES 和pampers. 两家的尿布都不错,我更喜欢huggies,因为
pampers换了新技术,3号往上的质量不如huggies好。他家的coupon不如huggies多,面
额也不大。注意huggies尿布要买那种红色包装 的,littlesuggler和little mover的
质量最好。
Coupon:
在huggies, pampers注册,他们给你寄coupon. 但尿布的消耗量是非常大的,厂家给寄
的coupon远远不及所需。所以我原来也在ebay上买过coupon,价格便宜。但是有一回居
然让我遇到一个搞笑卖家,拍下coupon以后竟然给我email了一个扫描的coupon。MM们
遇到这种问题一定要和他 br /> 款!
我这里有一个huggies $2 off无限打印版本的coupon,在此感谢 Zhang Xin MM把这个
coupon从那个长广告里单独做成一个小文件,可是刚才发现贴不了pdf格式的... 阅读全帖
w*******o
发帖数: 4857
45
来自主题: NextGeneration版 - 现在看到塑料的会唱歌的玩具就想吐
玩具们唱的都是那几首,"ABCDEFG","head、shoulders、knees
、toes",什么什么spider。我去baby story time教的也是那么几首,或者就是同样
的曲子换上不同的歌词。
t******3
发帖数: 620
46
来自主题: NextGeneration版 - 淘娃快20个月了
谢谢夸奖!但是他ABCDEFG之后就不知道了,12345,678910会说,但是不知道是什么意思...
e****e
发帖数: 472
47
来自主题: NextGeneration版 - 【包子题活动】妈妈聊天楼
备孕:工作忙,作息混乱,觉得需要两年才能怀上,想着这两年还可以去ABCDEFG旅游
,结果这孩子投胎一次中了
怀孕:开始一闻蔬菜就干呕,觉得自己真娇气,逼自己吃了回蔬菜,成全了唯一一次孕
吐;只能吃肉,前三个月的某一周吃了一次汉堡,一次pizza,一下长了8lb,这不欺负
人吗这不欺负人吗;青春痘没了,都说我皮肤变好了
产前:前一周和我妈去爬山四小时,把我妈累得一路说孩子你出来吧
生产:催产三天无果,连点滴都没打过的我躺在剖腹产的手术台上,心说人生真完整了
,好歹咱努力过
产后:体重!!!!!!!!!!!!!!!!!!!体重。。。。。。。。。。。。。
带娃:昨天满月,我睡了4小时就起来侯着,结果小祖宗睡了6个半小时,娃!请继续!
昨天,我妈帮我做了个28天的月子就撤了,剩下我跟娃单挑,晚上哄完娃借着离情别绪
跟荷尔蒙写了这么段话:
“我抱着他,哄他,他一直哭,我放上摇篮曲,站起来摇晃他,他闭上眼,安静了,像
要睡了。看着那长长的还打卷的睫毛,胖嘟嘟的脸,这一刻真有成就感。想偷偷懒,坐
下来晃,结果他又变回了声嘶力竭,脸红脖子粗的小婴孩。
顾不上为离别流眼泪,脑子一片空白。
他手舞足蹈,... 阅读全帖
s*******c
发帖数: 5161
48
☆─────────────────────────────────────☆
lilykang (伊一人) 于 (Tue Mar 5 09:24:34 2013, 美东) 提到:
3月5日晚间11点,护士唤醒我,说老公的血压在持续下降,很可能剩下的时间不多了。
我打电话让朋友把三个孩子带进来,和他们爸爸告别,让朋友帮忙照了最后一张全家福
。然后把孩子们送回去睡觉,其后就一直守在他身边。我和他说了很多很多话,和他说
我怎么爱上他的,和他说我对我们共同生活未来的展望,我摇他大声呼唤他,可是他都
没有反应,我一遍又一遍地亲他,和他说我舍不得舍不得啊,我知道他其实听得到,因
为期间他的血压有所回升。我一度以为奇迹出现,就更用力地抱他,更大声地说话。可
是生命的力量还是抵挡不住癌细胞的吞噬。他的血压一路滑落,最后凌晨近四时,他大
声喘了几口气,发出类似叹气的声音,眼角慢慢沁出一滴泪水。医疗监视器的警告声提
醒我,This is it。我的坚强的老公啊,我认识他以来从来没见他哭过,总算在他人生
的最后时刻,流下了一滴泪水。。
----谢谢大家给我这么多的祝福,我觉得祝福还是起作用了,... 阅读全帖
l*********e
发帖数: 5385
49
来自主题: NextGeneration版 - [合集] 【包子题活动】妈妈聊天楼
☆─────────────────────────────────────☆
swineustc (zhuzhuniuniu) 于 (Thu Mar 7 18:37:46 2013, 美东) 提到:
活动时间:即日起至3月9日
活动内容:妇女节要到啦~也许各位辣妈美妈们以前节日里会收到鲜花和礼物,现在围
着儿女转悠是不是也没精力过个节放个松?生儿育女不容易~~欢迎妈妈/准妈妈们进来
聊聊自己孕前孕后、产前产后的变化吧?(比如身体、精神、生理、心理、工作、学习
和生活上的变化)。
奖励方法:认真回复的id每人一个包子奖励。只回复“re,pai,chi”之类的格删勿论。
祝美妈辣妈们心想事成,宝宝健康快乐。
宝宝版版务
03/07/2013
☆─────────────────────────────────────☆
babycitybear (小熊) 于 (Thu Mar 7 18:49:30 2013, 美东) 提到:
先排上
准妈一枚
最近的情绪不怎么好
一天两件事郁闷到不行 明明不是我的错 lg 老妈 言语间隐隐的来怨我 心情不好 担心
影响到宝宝

☆... 阅读全帖
j*****o
发帖数: 3
50
来自主题: Parenting版 - 两周岁总结
一晃小宝两岁了,身体各项指标还不错。
身高 35 in 70%
体重 29 lb 60%
头围 75%
值得表扬的胃口不错,不挑食,肉类蔬菜都很喜欢,居然最喜欢的蔬菜是苦瓜,有没有
其他小朋友也喜欢吃苦瓜的? 不足之处就是戒了奶瓶之后不喜欢喝奶,每天也就12 OZ
左右。还有还不会自己吃饭,自己可以吃,但是非常不熟练。
睡眠还可以,晚上9:00到早上7:00, 中午午睡大约2小时。 尿布还没有摘,准备开始训
练。刚刚听说有个小姐姐3天训练成功的故事, 大受鼓舞中。
语言能力比较强,平时见到的东西几乎都能准确说出名字,动物书上几十种动物都能正
确叫出名字。 儿歌会背诵20几首, 三字经刚开始背,现在能背到“养不教,父之过。
教不严,师之惰。“ 数字能数到9,颜色知道 红,黄, 绿, 蓝, 黑, 白。 字母还
没有开始教,现在只知道 ABCDEFG。
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)