由买买提看人间百态

topics

全部话题 - 话题: peek
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)
l****c
发帖数: 782
1
来自主题: JobHunting版 - L家coding question一问
就是按照时间顺序执行Task那道题,我收集了一些答案自己写了一下,
还请大牛多多多多的指点下,有没有问题。
多谢,多谢!
public class ProcessingQueueTest extends Thread {
//用个minHeap存Tasks
private Queue Tasks = new PriorityQueue<>(new Comparator(){
public int compare(Task a, Task b) {
if (a.time < b.time) return -1;
else if (a.time > b.time) return 1;
else return 0;
}
});
private boolean isRunning = true;
// 加Task进Heap
public void addTask(Task task) {
synchron... 阅读全帖
k****r
发帖数: 807
2
来自主题: JobHunting版 - how to code this question of LinkedIn
According to your approach, I tried to code one. Please kindly let me know,
if you see anything wrong:) (Here, I assume both produce and merge are
costly)
public class MergeOutput {
public static void main(String[] args) throws Exception {
List list = new ArrayList<>();
BlockingQueue bq1 = new ArrayBlockingQueue(1000);
BlockingQueue bq2 = new ArrayBlockingQueue(1000);
Producer producer = new Producer(bq1, list);
Consumer[] consumers = new Con... 阅读全帖
l*******e
发帖数: 127
3
来自主题: JobHunting版 - google onsite面经,已挂
写了一下第三题,基本思路是类似于sweep-line算法,用一个max heap保持当前权重最
高的alarm,按照时间顺序扫描, 碰到alarm start event, add alarm to the heap,
for alarm end event,
remove the alarm from the heap. keep track the top of the heap, which
should be kept.
public class WeightedInterval {
public List removeAlarms(List alarms)
{
SortedMap> times = new TreeMap<>();
for(Alarm alarm : alarms)
{
if(!times.containsKey(alarm.start)) times.put(alarm.start, new
Array... 阅读全帖
j*******l
发帖数: 1066
4
来自主题: JobHunting版 - leetcode上多少分算牛人?
大部分点赞高的答案虽然算法精妙 但真code review 很多要打回去重写 maintainance
很差 再比如peeking iterator 那题 我就没看见null safe的 我直接贴了个guava的解
法也没啥人回
j*******l
发帖数: 1066
5
来自主题: JobHunting版 - leetcode上多少分算牛人?
大部分点赞高的答案虽然算法精妙 但真code review 很多要打回去重写 maintainance
很差 再比如peeking iterator 那题 我就没看见null safe的 我直接贴了个guava的解
法也没啥人回
a**********0
发帖数: 422
6
题目很简单 思路就是 level order traverse 其间每一层除了最后一个node 其他的
node的next都指向本层的下一个 最后一个node的next指向null
不过老过不了OJ 报错 而且我自己在eclipse上跑了一下 发现自己跑的结果和报错的情
况不一样 难道是oj错了
/**
* Definition for binary tree with next pointer.
* public class TreeLinkNode {
* int val;
* TreeLinkNode left, right, next;
* TreeLinkNode(int x) { val = x; }
* }
*/
public class Solution {
public void connect(TreeLinkNode root) {

if(root == null)
return;

LinkedList que... 阅读全帖
o*q
发帖数: 630
7
来自主题: JobHunting版 - G家leetcode题
Google
Show problem tags Hide locked problems
#
Title
Acceptance
Difficulty
Frequency
66 Plus One 35.4% Easy
146 LRU Cache 15.8% Hard
200 Number of Islands 29.7% Medium
288 Unique Word Abbreviation 15.7% Easy
163 Missing Ranges 30.3% Medium
56 Merge Intervals 26.7% Hard
228 Summary Ranges 26.0% Medium
308 Range Sum Query 2D - Mutable 20.8% Hard
279 Perfect Squares 34.1% Medium
388 L... 阅读全帖
W***n
发帖数: 11530
8
What $200,000 Will Buy In The Atlanta Real Estate Market
By Jean Folger | April 15, 2014 — 12:45 PM EDT
The median list price in Atlanta is now $184,900, up 12.1% from the previous
year, according to the National Housing Trend Report for February 2014,
published by Realtor.com. This puts Atlanta slightly under the national
median list price of $199,000. Where Atlanta shines, however, is in
inventory: It sits near the top of the report's 146 regions in terms of
total number of listings. Real est... 阅读全帖
o*q
发帖数: 630
9
来自主题: JobHunting版 - 请教leetcode高频题是哪些题
# 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
... 阅读全帖
M********9
发帖数: 81
10
来自主题: JobHunting版 - Amazon AWS internal tool 组有意思吗?

请教下,
以下这个position,是不是就是LZ说的AWS internal tool组?
不过我愿意试下,我现在工作没时间刷题,等刷完了再去seattle面试。
---------------------------------------------------
hope you are doing well! I support AWS Development Productivity and Builder
Tools - our organization is large and diverse, and touches just about every
facet of the software development lifecycle. Each area within AWS Developer
Tools has multiple senior and principal engineers working across many
different developer tool domains and we own a variety of internal ... 阅读全帖

发帖数: 1
11
来自主题: JobHunting版 - Java面试题求解
同是java小白,简单写了一下,供参考。希望楼主是萌妹纸。。嘿嘿。
预祝面试成功。
public List getOldestSisters() {
List ret = new LinkedList<>();
PriorityQueue pq = new PriorityQueue(1, (a, b) -> a.
age - b.age);
Set visitedParents = new HashSet<>();
Queue queue = new LinkedList<>();
if (father != null) queue.offer(father);
if (mother != null) queue.offer(mother);
while (!queue.isEmpty()) {
Person p = queue.poll();
... 阅读全帖

发帖数: 1
12
来自主题: JobHunting版 - 贡献一个最近电面题目
根据楼上的思想写了两个版本,不知道对不对
单调栈:
List findMinUnsortedSubArray(int[] nums) {
List res = new ArrayList<>(2);
if (nums == null || nums.length == 0) return res;
int n = nums.length;
Stack s = new Stack<>();
int max = Integer.MIN_VALUE;
s.push(-1);
for (int i=0; i while (!s.isEmpty() && nums[i] < max && nums[i] < nums[s.peek()]
) {
s.pop();
}
if (nums[i]... 阅读全帖

发帖数: 1
13
来自主题: JobHunting版 - 有的题 AC 率挺奇怪
比如下面这几道 AC 率在 35% 左右的,我写的代码都是一次性通过:
https://leetcode.com/problems/peeking-iterator/
https://leetcode.com/problems/find-k-closest-elements/
https://leetcode.com/problems/bulls-and-cows/
有些 AC 率在 40% 以上的,我必须得看答案才知道怎么做。例子比较多,就不一一列
举了。。

发帖数: 1
14
来自主题: JobHunting版 - 来做道题!
636. Exclusive Time of Functions
Input:
n = 2
logs =
["0:start:0",
"1:start:2",
"1:end:5",
"0:end:6"]
Output:[3, 4]
这道题目,很有意思。
单线程求每个函数执行的总时间。
一共有
start end start end
start start end end
两种情况。
需要注意,开始时间是 第i秒的开始,结束时间是第i秒的最后。
class Solution {
public int[] exclusiveTime(int n, List logs) {
Stack stack = new Stack<>();
int[] res = new int[n];
String[] sa = logs.get(0).split(":");
int prev = Integer.parseInt(sa[2]);
stack.push(Integer.parse... 阅读全帖
c*******e
发帖数: 9475
15
来自主题: Living版 - Re: peak a boo是什么意思
Peek-a-boo 逗宝宝玩的, 就是用手或者别的东西把脸盖起来, 然后突然把手拿开, 一边
说: "Peekaboo!" 可以训练宝宝懂得一样东西看不见了并不是没有了, 还会再出来的.
g*****9
发帖数: 4125
16
No, I live kind out in the country, so the land is cheap. But during storm
or heavy winter snow, we will loose electricity. I started out with a diesel
generator and a 500 gallon in ground fiber glass tank, and soon find out
the generator is not powerful enough to supply the whole house duing peek
usuage (running AC). I do not want to go to a bigger diesel generator or
buying battery packs. So I went with a micro turbine natural gas generator,
since the exhaust gas was so hot, I can just use tha
h*******d
发帖数: 108
17
来自主题: Living版 - 请看看这房子的风水-有图
哈哈,这就是传说中的peek-a-boo view
m***y
发帖数: 14763
18
来自主题: Living版 - 求救:地下室墙上长霉了!
Another wet basement... Why did you guys bother to finish them?
Now, don't bother with the spots, first. Take a peek behind the dry wall
instead. If the mold is not all over the place, consider yourself lucky, but
still, that doesn't mean you did the right thing.
d********1
发帖数: 3828
19
这里踩楼主的回帖未免有点太卑躬屈膝了吧。晾衣服应该不应该不说,他邻居这种语气
太不友好。提醒一下就得了,有必要那么盛气凌人么?
再说落地晾衣架应该是可以的。他邻居是不是有偷窥癖。
建议楼主回一个“don't peek into our yard.”
s****l
发帖数: 16457
20
哈哈,这个有意思。或者说"stop peeking, you pervert!"
t*********a
发帖数: 22
21
LZ晾衣服是违反规定,但是邻居那样的言语就是侮辱和歧视,非要那样用种族歧视的言
语提醒吗?大家不要再指责LZ晾衣服了,帮忙想想怎么维护中国人的尊严吧。我同意楼
上有个人说的,回复邻居就说谢谢提醒,我们以后不凉衣服了,但是请你do not peek
into our yard.
sb
发帖数: 284
j****n
发帖数: 3465
23
来自主题: Living版 - Home Depot Black Friday 准备就绪
几年的HD貌似也没什么deal啊,有什么不能peeking的?
l****u
发帖数: 980
24
来自主题: Living版 - 请推荐一个性价比好的发电机
什么眼神啊?这个是3,000瓦,peek 3,750瓦,比你看上的2000刀的功率大。不过hot
water heater肯定不能用,那个在4,500瓦左右。要用的话,怎么也得买个7,000瓦以上
的。
f*******1
发帖数: 176
25
来自主题: Living版 - 问下买房子和agent的关系
小弟看了2个月的房子了 说说个人经验, 仅供参考。
agent 买方是不需要付钱的。 一般卖方会拿出成交价的6%, 买方agent 和卖方agent
各占3%。
你要是因为是朋友亲戚感觉太麻烦人家, 就买点小礼物什么的吧。 其实这个是agent
的工作, 你作为他的顾客, 提要求是不过分的。只要你把房子买了, 他就会赚到钱。
我们的agent 比较忙, 所以每周大概只有一次 和她一起去看房。 基本流程是 我们把
自己的喜好, 对房子的要求, 等等告诉她。 她会从他们agent自己用的list里挑选出
一些她根据我们的需要筛选出来的房子, 然后发给我。 我会进行第一次筛选, 去掉
那些仅仅通过看图片就pass掉的房子。 把剩下的list发还给她。 她会和房东或者卖方
agent约时间, 然后和我们一起去看。 并帮助分析房子的利弊。一般这个过程有个2到
3 次, agent就会了解你的喜好, 之后的筛选就会更加符合你的要求。
因为agent 时间不多, 所以我们自己也经常周日去一些open house, 如果有喜欢的,
会要求agent带我们去second peek。
目前我们已经有了... 阅读全帖
c**2
发帖数: 8496
26
That's why I would rather use US Bank VGC, I know USB are easy to get hacked
, and Kroger treat EVERY purchase as you are VIP (manager comes to your help
), but it beats WM money center clerk's constant walking by to peek what you
are doing when you have been using ATM for > 5 minutes.
u***n
发帖数: 21026
27
来自主题: Money版 - BOA传说推新卡
有peek吗?
h*******3
发帖数: 327
28
来自主题: NextGeneration版 - *****宝宝物品单和使用评价*****
8. Baby Toys:
I didn’t buy too many toys due to limited space we have at home. Here are
the ones we got:
• Car Seat/Stroller Toy:
i. Bright Starts Petal Pusher Carrier Toy Bar. We didn’t put
this one until 奕云 was at least 3+ months. When baby is too young, she
doesn’t care about sound/light/color. She sleeps more in the car seat &#
61514;
• Crib Toy:
i. Fisher-Price Miracles & Milestones Peek-a-Boo Piano: Baby
doesn’t know what this is until
h****9
发帖数: 381
29
*** SALE或COUPON专贴,请JMs将有关信息贴这个专贴里,以方便大家查找 ***
*** 请JMs存下这个贴子的链接,我会尽量每周都来更新,如果大家看不到这个贴子,我更新就没有意义了。 ***
只是想跟JMs说明一下,为了方便大家查找,我答应版版MM帮助收集和整理我所
知道的以及JMs提供的COUPON/DEAL信息,我会尽量及时更新coupon专贴的主贴,
也欢迎更多JM将coupon贴在这个贴子里,在此一并感谢所有提供COUPON/DEAL
信息与大家分享的JMs,并感谢在COUPON专贴出问题时给予我很大支持与帮助的steedzhu、BelugaWhale及brightsmoo几位版版MM。
除了某些 BRU/TRU COUPON可能是扫描件以外,其它基本上都是printable coupons,请需要的JM用链接打印啊。JMs可以在文摘区找到更多coupon信息
包括交换等信息(请从首页找起)。
★ 有JM问起,觉得这个贴子太长了,慢的原因可能是图片太多,我将图片显示出来是想方便JMs很快找到自己想要的DEALS(我可以将图片略去,如果更好的话)。简介一下主贴的内容啊... 阅读全帖
s**********4
发帖数: 514
30
来自主题: NextGeneration版 - 麻烦大家给推荐一款mobile
我家买的这个,男宝,可喜欢了,现在还很喜欢,不同时期不同的用途,刚开始看看而
已,后来狂踩自行车,再后来,喜欢揪,可以练习宝宝揪运动中的物体
Fisher Price Rainforest Peek-A-Boo Leaves Musical Mobile
http://www.amazon.com/gp/product/B000JIHP88/ref=oss_product
装在我家的crib,没有任何问题。我家买的Graco Lauren Dropside Convertible Crib
- Espresso。
不过还是提醒一下mm,这个crib最近被recall了,公司刚寄了kit过来,把dropside固
定死了。不知道你家是不是买的这个,还是小心为上,娃小的时候不觉得,现在我觉得
这个crib很不安全,太单薄了,即使现在固定住了,眼见着娃想站起来了,觉得很恐怖
,到时候实在不行,给换个厚实些的crib。昨天惊魂了,现在还没恢复过来,总觉得随
时都可能出事。
w********r
发帖数: 238
31
来自主题: NextGeneration版 - 关于mobile
thanks. Not sure whether this one is better: Fisher-Price Rainforest Peek-a-
Boo Leaves Musical Mobile
http://www.toysrus.com/product/index.jsp?productId=2455072
b***k
发帖数: 2829
32
来自主题: NextGeneration版 - 回国给要生的老姐带什么小孩的东西?
Stroller 不知道该选那个, 我看卖得很好的GRACO那个TRAVEL SYSTEM好像很重, 不知
道是不适合国内上楼以及出行之类的.
根据各位大侠建议, 现在选了这几个:

Dr. Brown's BPA Free Polypropylene Natural Flow Bottle Newborn Feeding Set -
Dr. Brown's
Fisher-Price Rainforest Jumperoo - Fisher Price
Cloud b Twilight Constellation Night Light, Turtle - Cloud b
Vulli Sophie the Giraffe Teether - Vulli
Fisher-Price Rainforest Waterfall Peek-a-Boo Soother - Fisher Price
Tiny Love Sweet Island Dreams Mobile - TINY LOVE
Braun Thermoscan Ear Thermometer with ExacTemp Te
n*****9
发帖数: 224
33
来自主题: NextGeneration版 - Fisher Price 30% off
不知道是不是deal
http://dealsea.com/view-deal/44914
我买了一个peek a blocks cho cho train, 算运费$20. 就是担心唱的歌也是christmas theme的,我最怕过圣诞节,老掉牙的歌躲也躲不掉
n*******3
发帖数: 5232
34
来自主题: NextGeneration版 - 眼都挑花了,大家给推荐个mobile吧!
最好是带遥控的...听说很省事.
最好是在Amazon上能买到的.
暂时看到这两个.哪个好点?
一个是Fisher-Price Rainforest Peek-A-Boo Leaves Musical Mobile
http://www.amazon.com/Fisher-Price-Rainforest-Leaves-Musical-Mobile/dp/B000JIHP88/ref=sr_1_1?s=baby-products&ie=UTF8&qid=1291862924&sr=1-1
一个是Tiny Love Sweet Island Dreams Mobile
http://www.amazon.com/Tiny-Love-Island-Dreams-Mobile/dp/B00198PQHY/ref=sr_1_4?s=baby-products&ie=UTF8&qid=1291862924&sr=1-4
价格一样.Fisher price的那个好像是有remote的.
还有啥推荐的?
h********u
发帖数: 2207
35
来自主题: NextGeneration版 - 求推荐6-12个月大宝宝的玩具
我家的现在9个半月,开始喜欢玩learning home了。还有就是很喜欢看书。
另外这个也不错:
http://www.amazon.com/Manhattan-Toy-Put-Peek-Birdhouse/dp/B0001NEAB6/ref=sr_1_cc_1?ie=UTF8&qid=1292274916&sr=1-1-catcorr
m*****r
发帖数: 551
36
来自主题: NextGeneration版 - Deal:Fisher Price Laugh & Learn Kitchen $10
谢谢妹妹,刚才也买了kitchen, workbench and Peek-A-Boo Cuckoo Clock. 其他的都
已经out of stock了。很惋惜没买到那个basketball.
b********n
发帖数: 181
37
来自主题: NextGeneration版 - 请姐妹们推荐给两个月的娃娃的玩具
Rainforest Waterfall Peek-a-Boo Baby Soother
Rainforest Melodies & Lights Deluxe Gym
b********n
发帖数: 181
38
来自主题: NextGeneration版 - 请姐妹们推荐给两个月的娃娃的玩具
Rainforest Waterfall Peek-a-Boo Baby Soother
Rainforest Melodies & Lights Deluxe Gym
So fun ,so good.
m*********7
发帖数: 5207
39
来自主题: NextGeneration版 - 娃居然一岁了!(多图)
从什么时候起,你不再是那个吃了睡,睡了吃的小肉球球了?
从什么时候起,你开始笑出声,并每天一早对推门而入的妈妈鼓掌欢迎了?
从什么时候起,你学会对幼儿园的小朋友招手微笑挤眼睛,和他们一起玩儿玩具了?
从什么时候起,你开始清晰的叫爸爸妈妈了?
时间过的太快,快的我和你爸爸几乎忘了怎么满心欢喜的憧憬你的到来,给你起名字,
还有你出生那晚的繁星满天。
On the night you were born
The moon smiled with such wonder
That the stars peeked in to see you
and the night wind whispered
"Life will never be the same"
For never before in story or rhyme
Not even once upon a time
has the world ever known a you, my friend
and it never will, not ever again...
z*******g
发帖数: 49
40
来自主题: NextGeneration版 - 杂物交换帖-5,6月
Chicco You & Me Deluxe Infant Carrier $70
全新的,包装都没有拆。
http://www.toysrus.com/product/index.jsp?productId=2870471&prod
Fisher-Price Rainforest Waterfall Peek-a-Boo Soother $20
9.5成新,给我家闺女看了几次,没反应,就闲置了
还有一个medela的swing $30
只有机器,需要自己配瓶子和线。
限NYC,queens可送上门,价格再议,请站内联系
p********o
发帖数: 213
41
来自主题: NextGeneration版 - 杂物交换帖-5,6月
芝加哥地区转 BABY ITEMS (zip 60565):
1. Fisher-Price Rainforest Peek-A-Boo Leaves Musical MobileMobile -- $15
http://www.amazon.com/Fisher-Rainforest-Leaves-Musical-Mobile/d
2. Fisher-Price Rainforest Jumperoo -- $45
http://www.amazon.com/Fisher-Price-K6070-Rainforest-Jumperoo/dp
3. Graco Duo 2-in-1 Swing and Bouncer--$50 (similar to the following but in
a different color)
http://www.amazon.com/Graco-Duo-Swing-Bouncer-Collection/dp/B00
4. Graco Snugride Infant Car Seat, On the Run--$40
http://www.amaz... 阅读全帖
z*******g
发帖数: 49
42
来自主题: NextGeneration版 - 杂物交换帖-5,6月
Chicco You & Me Deluxe Infant Carrier $45
全新的,包装都没有拆。
http://www.toysrus.com/product/index.jsp?productId=2870471&prod
Fisher-Price Rainforest Waterfall Peek-a-Boo Soother $10
9.5成新,给我家闺女看了几次,没反应,就闲置了
还有一个medela的swing $10
只有机器,需要自己配瓶子和线。
限NYC,价格再议,请站内联系
f******d
发帖数: 51
43
来自主题: NextGeneration版 - 杂物交换帖-5,6月
最好是Fisher-Price Rainforest Waterfall Peek-a-Boo Soother
其他型号也没关系,麻烦美妈把链接,价格发给我, 谢谢!
k******b
发帖数: 4501
44
来自主题: NextGeneration版 - 大家来说说 separation anxiety
书上说要多玩玩peek-a-boo游戏。 我自己的经验,任何类似的游戏,比如拿块布蒙住自己或宝宝的脸,然后扯下布,和宝宝再相见,宝宝都是非常欢迎的。经常把宝宝放倒在床上,他哼哼唧唧不乐意时,玩个这种游戏,他就又笑了。
还可以玩这样的游戏: 大人在宝宝注视中离开房间,然后过1,2秒钟又出现,向宝宝微
笑。反复玩这样的游戏,让宝宝感觉大人走了还是会回来的。 我每次离开宝宝视线,
如果有机会都会玩2,3次这个把戏,宝宝是很喜欢的。
p*********y
发帖数: 316
45
来自主题: NextGeneration版 - 攒人品,发一个生娃前屯的Baby item list
刚生不久,把生娃前屯的Baby item list贴出来,攒点人品,希望对大家有帮助,也希
望娃娃们茁壮健康成长。这个LIST是根据大家平时讨论觉得好的东西,有用的东西汇总
而来。主要是在AMZ和TRU/BRU买的,BUYBUYBABY也有一些。总共花费大概2000刀,由于是在孕期随时有DEAL就屯,所以比较节省花费。
Dipers: 乘着AMZ的便宜,屯的多了点。
Diaper bag
Newborn: need 600
1#: need 1000
2#: need 500
3#: need 1500
4#: 。。。。。
Wipes:
Pampers Baby Fresh 230
Huggies Natural Care Fragrance Free Refill Baby Wipes 1200
Medline wipes (hospital) 100
抽拉式Face tissue 800
清洗脐带Alcohol swap 120
Bath:
The first years sure comfort deluxe newborn-to-toddler tub
Avee... 阅读全帖
f******d
发帖数: 51
46
来自主题: NextGeneration版 - 求一个soother
最好是Fisher-Price Rainforest Waterfall Peek-a-Boo Soother
其他型号也没关系,麻烦美妈把链接,价格发给我, 谢谢!
d*****g
发帖数: 900
47
来自主题: NextGeneration版 - 这个玩具看起了很好玩啊,有人买过吗
在FISHER PRICE 的官网看到的,看DEMO很好玩
Peek-a-Blocks™IncrediBlock
http://www.fisher-price.com/fp.aspx?st=2341&e=detail&pcat=bubri
p*****B
发帖数: 40
48
来自主题: NextGeneration版 - 9-10个月以上宝宝的玩具
宝妈们还有什么好推荐的? 宝宝每天都想发掘新的玩意。 家里已有的都好像玩腻了一
样,包括遥控器,电话,矿泉水瓶等家用东西。 多谢。
下面是我们已有的和宝宝的feedback:
已有的大件东东:
1. Fisher price Music Table 曾经很喜欢玩,现在只是每天碰两下。
2. Fisher price learning home 喜欢玩
3. Play cube from Costco 不怎么喜欢
4. Fisher price Jumperoo 早就不玩了。
5. Evenflo exersaucer 现在只是喂饭的时候用。
6. Early Learning Centre Lights & Sounds Walker 还不怎么玩。
其他的小东东:
Fisher-Price Brilliant Basics Rock-a-Stack 一般般
Fisher-Price Brilliant Basics Baby's First Blocks 喜欢
Fisher-Price Laugh & Learn Say Please Tea Set ... 阅读全帖
l******1
发帖数: 1773
49
来自主题: NextGeneration版 - Amazon买东西也不便宜呀
我基本只在他家买书,太方便了,可以peek inside.
e*********d
发帖数: 176
50
来自主题: NextGeneration版 - Baby Items for Sale
以下物品都是新买给新生宝宝的,只用了很短的时间,物品状况良好。若购买item 1、
2、3、4和5,item 6、7、8、9可免费赠送。
Local pick up preferred. Zip code: 20707, Maryland.
1.Bright Starts Comfort & Harmony Portable Swing (pink) – $18
http://www.amazon.com/Bright-Starts-Comfort-Portable-Biscotti/d
2. Graco Travel Lite Crib – Cabo -- $38
http://www.toysrus.com/product/index.jsp?productId=3609375
3. Evenflo Double Fun Developmental Activity Center, Ocean --$25
http://www.amazon.com/Evenflo-Double-Developmental-Activity-Cen
4. Tiny Love Jungle Park... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 (共10页)