由买买提看人间百态

topics

全部话题 - 话题: todos
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
a*********4
发帖数: 7
1
来自主题: JobHunting版 - 一道面试题
a java solution:
import java.util.*;
public class FindNonDupeSubTree {
private class Node{
int val;
Node left;
Node right;
Node (int val){
this.val = val;
left = null;
right = null;
}
}

public boolean FindSubTree(Node root, Set nodeSet, ArrayList<
Integer> validTreeRoots){
if (root == null)
return true;
Set sleft = new HashSet();
Set ... 阅读全帖
x******u
发帖数: 259
2
来自主题: JobHunting版 - L家电面(最新) 攒RP 求bless
运气不好,碰到老印三哥三姐,悲剧了。电话进来Late了。然后讨论简历。。。
上题,头有点晕。。。把题弄错了。一开始思路不对,就悲剧了。
Given a list of child->parent relationships, build a binary tree out of it.
All the element Ids inside the tree are unique.
Example:
Given the following relationships:
Child Parent IsLeft
15 20 true
19 80 true
17 20 false
16 80 false
80 50 false
50 null false
20 50 true
You should return the following tree:
50
/
20 80
/ /
15 17 19 16
Function S... 阅读全帖
f******4
发帖数: 51
3
来自主题: JobHunting版 - FG题目包子求教--read4096
FG以前都面过的题目,貌似出现概率不低。搜索+论坛考古之后实在没有研究出满意的
答案,
原题如下:
Given API:
int Read4096(char* buf);
It reads data from a file and records the position so that the next time
when it is called it reads the next 4k chars (or the rest of the file,
whichever is smaller) from the file.
The return is the number of chars read.
Todo: Use above API to Implement API
"int Read(char* buf, int n)" which reads any number of chars from the file.
有没有大牛甩个python解法
f******4
发帖数: 51
4
来自主题: JobHunting版 - FG题目包子求教--read4096
FG以前都面过的题目,貌似出现概率不低。搜索+论坛考古之后实在没有研究出满意的
答案,
原题如下:
Given API:
int Read4096(char* buf);
It reads data from a file and records the position so that the next time
when it is called it reads the next 4k chars (or the rest of the file,
whichever is smaller) from the file.
The return is the number of chars read.
Todo: Use above API to Implement API
"int Read(char* buf, int n)" which reads any number of chars from the file.
有没有大牛甩个python解法
D**C
发帖数: 6754
5
来自主题: JobHunting版 - 请教L家生成H2O水分子的题。
import java.util.concurrent.ArrayBlockingQueue;
import java.util.concurrent.atomic.AtomicInteger;
public class H2O {
//using blocking queue, so it's easy to just have 2 h and 1 o at most,
//other threads will be blocked.
ArrayBlockingQueue hQueue = new ArrayBlockingQueue(2);
ArrayBlockingQueue oQueue = new ArrayBlockingQueue(1);
AtomicInteger hCount = new AtomicInteger();
AtomicInteger h2oCount= new AtomicInteger();
AtomicInteger hPrintCount= new AtomicInteger();
... 阅读全帖
h**********c
发帖数: 4120
6
来自主题: JobHunting版 - 问一个G家面试题
good question
mark in TODO list.
h**********c
发帖数: 4120
7
来自主题: JobHunting版 - 请教G家新题 continental divider
简单写了一下
用 java,思路是flooding
按照楼主原文4是答案,所以不能平移
我英文注释说,growing sea level, when oceans become one body, any elements
adjacent to water ( not checked in the above) are the answers.
对于basin,水出不去的地方,思路有,flood 到的时候,设成无限高(closed).
这题折腾不知道有什么意义没有,有什么数学或图形学上的理论吗?或者在计算机图形
图象上有什么应用?
所以不想花更多时间
上贴还有TODO没有完工。
大家愿加test case非常欢迎
也可以直接拉我github 上code
c******1
发帖数: 37
8
来自主题: JobHunting版 - G家onsite 随机数一题
public class RandomBlack {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
RandomBlack fac = new RandomBlack();
List> lss = fac.permu(9);
for(List ls : lss) {
for(int i = 1; i < 10; i++) {
int getRan = fac.getRan(ls, i);
int check = fac.check(ls, i);
if(getRan == check) continue;
else {
Sys... 阅读全帖
p*********g
发帖数: 116
9
来自主题: JobHunting版 - 问个fb onsite题目
我贴一个吧,不过是输出数字值,不是下标的。 不知道fb要求什么。
import java.util.*;
public class Fb3Sum {

public static List> threeSum(int[] nums, int target) {
Arrays.sort(nums);
List> res = new ArrayList>();
for (int i=0; i<=nums.length-3; i++){
List> lists = twoSum(nums, i+1, target-nums[i]);
for (List list: lists) {
list.add(0, nums[i]);
}
res.addAll(lists);
... 阅读全帖
S***w
发帖数: 1014
10
来自主题: JobHunting版 - 问个fb onsite题目
我贴一个吧,不过是输出数字值,不是下标的。 不知道fb要求什么。
import java.util.*;
public class Fb3Sum {

public static List> threeSum(int[] nums, int target) {
Arrays.sort(nums);
List> res = new ArrayList>();
for (int i=0; i<=nums.length-3; i++){
List> lists = twoSum(nums, i+1, target-nums[i]);
// i 可以重用
for (List list: lists) {
list.add(0, nums[i]);
}
res... 阅读全帖
s******c
发帖数: 1920
11
来自主题: JobHunting版 - slack好在什么地方
我觉得很好用
不仅仅是个聊天室 集成有messenger,todo ticket 文档在一起。而且挺快的。每项都
是最基本功能 但合在一起就很顺手
不然得gtalk jira github gdoc 单个领出来都很牛 但整个workflow太麻烦
k******a
发帖数: 44
12
来自主题: JobHunting版 - React or Angular选哪个
AngularJS出来时间长,用户量大,用的地方比较多。但是设计思路相对复杂一点,概
念比较多。
React出来时间短,用户群还小,使用的地方还相对少。但是设计简单,容易上手,用
户群非常活跃。
选择哪一个不是关键,关键是掌握先进javascript framework的理念和开发经验。这个
东西是可以转移的。所以,无论掌握哪一个,对于以后的工作,特别是前端开发的工作
都很好。
相对来说,AngularJS更加完整一些,文档+案例更多。React更加灵活。
个人意见,如果你喜欢按部就班的开发,并且尽量使用out of box的东西,并且follow
steps就能开发出一个app, 那么angularJS比较好。如果你喜欢DIY, 那么react比较
好。
最好是都学习一下,然后做一个TODO list, 感受一下自己更喜欢哪一个风格。
y******s
发帖数: 92
13
来自主题: JobHunting版 - 一道用叶子过河题
public static int cross(int[] A, int X, int D) {
int reach = D;
if (reach >= X) {
return 0;
}
PriorityQueue pq = new PriorityQueue();

for (int i = 0; i < A.length; i++) {
if (A[i] <= reach) {
reach = Math.max(reach, A[i] + D);
}
else {
pq.add(A[i]);
}
while (!pq.isEmpty() && reach >= pq.peek()) {
reach = Math... 阅读全帖
a***u
发帖数: 383
14
来自主题: JobHunting版 - 贡献一个 一个L家的店面题目
import java.util.*;
public class DesignDataStructure {
Map> map = new HashMap>();
List list = new ArrayList();

public void add(int num){
list.add(num);
int index=list.size()-1;
if(map.containsKey(num)){
map.get(num).add(index);
}else{
Set set =new HashSet();
set.add(index);
map.put(num, set);
}
}
public voi... 阅读全帖
a***u
发帖数: 383
15
来自主题: JobHunting版 - 贡献一个 一个L家的店面题目
import java.util.*;
public class DesignDataStructure {
Map> map = new HashMap>();
List list = new ArrayList();

public void add(int num){
list.add(num);
int index=list.size()-1;
if(map.containsKey(num)){
map.get(num).add(index);
}else{
Set set =new HashSet();
set.add(index);
map.put(num, set);
}
}
public voi... 阅读全帖

发帖数: 1
16
来自主题: JobHunting版 - 狗家被放pep了,求指导

对啊,写perf的时候就有: todo list 上有:
april 20: Work with your manager to set your performance expectations for
the next 6 months
当时没注意,今天仔细看了一下
这个是每个人个人的perf上都有?求确认谢谢了
f********g
发帖数: 99
17
来自主题: JobHunting版 - 425 Todo 175/601 Solved
忆秦娥·娄山关
一九三五年二月
西风烈,长空雁叫霜晨月。霜晨月,马蹄声碎,喇叭声咽。
雄关漫道真如铁,而今迈步从头越。从头越,苍山如海,残阳如血。
c*******a
发帖数: 1879
18
来自主题: JobHunting版 - 425 Todo 175/601 Solved
关键不是多少题, 是你真正掌握了多少, 融会贯通。
如果你刷完一遍, 再次看到第一道题时候发现还是不会, 你的大脑容量就不够了。
t****b
发帖数: 2484
19
来自主题: JobHunting版 - 425 Todo 175/601 Solved
现在还不急 先把量搞上去 每个类型的题做他个三四道 慢慢就熟了
宜将剩勇继续刷 不可沽名学霸王
f********g
发帖数: 99
20
来自主题: JobHunting版 - 425 Todo 175/601 Solved
陈康肃公尧咨善射,当世无双 ,公亦以此自矜。尝射于家圃,有卖油翁释担而立,睨
之,久而不去。见其发矢十中八九,但微颔之。
康肃问曰:”汝亦知射乎?吾射不亦精乎?”翁曰:”无他, 但手熟尔。”康肃忿然
曰:”尔安敢轻吾射!”翁曰:”以我酌油知之。”乃取一葫芦置于地,以钱覆其口,
徐以杓酌油沥之,自钱孔入,而钱不湿。因曰:”我亦无他,唯手熟尔。”康肃笑而遣
之。
f********g
发帖数: 99
21
来自主题: JobHunting版 - 425 Todo 175/601 Solved
七律-中国人民刷题军占领湾区
t****b
发帖数: 2484
22
来自主题: JobHunting版 - 425 Todo 175/601 Solved
先把革命火种留在Milpitas 街霸哥和特瑞南昌起义
然后我们在圣克拉拉积极响应 来个秋收起义
最终成立解放区

发帖数: 1
23
来自主题: JobHunting版 - 425 Todo 175/601 Solved
嗯呢,干他娘的

发帖数: 1
24
来自主题: JobHunting版 - 425 Todo 175/601 Solved
然后占领北美大陆。想和哪个种族的女性交配,就和哪个种族的女性交配。

发帖数: 1
25
来自主题: JobHunting版 - 425 Todo 175/601 Solved
嗯,想让哪个种族的candidate做题,就让那个种族的candidate做题,✌️

发帖数: 1
26
来自主题: JobHunting版 - 425 Todo 175/601 Solved
👍

65039;

发帖数: 1
27
来自主题: JobHunting版 - 刷题弱人来问个two sum的题目
我们刷的都是leetcode吗?怎么函数看起来这么不一样?
https://leetcode.com/problems/two-sum/description/
class Solution {
public:
vector twoSum(vector& nums, int target) {
vector ret = {-1, -1};
unordered_map mp;
for (int i = 0; i < nums.size(); ++i) {
int remain = target - nums[i]; // TODO: deal with overflow
if (mp.count(remain) > 0) {
ret[0] = mp[remain];
ret[1] = i;
return ret;
} ... 阅读全帖
H**********5
发帖数: 2012
28
比如这个
http://blog.gainlo.co/index.php/2016/11/18/uber-interview-question-move-zeroes/
一开始看效率果然很高,我就用java实现,随便跑个test居然是个错误结果。
public static void moveZeroes(int[] nums) {
int right = nums.length-1;
int operations=0;
for(int left = 0; left < nums.length; left++){
if(left>right){
nums[left]=0;
operations++;
continue;
}
if(nums[left] ... 阅读全帖
e****7
发帖数: 644
29
WARNING
AUDIO &VIDEO
SURVEILLANCE
ON DUTY
AT ALL TIMES
AVISO
CAMARAS DE VIGILANCA
GRABANDO
AUDIO Y VEDIO
TODO EL TIEMPO
o**********e
发帖数: 18403
30
来自主题: Parenting版 - 选票上以少胜多 (转载)
【 以下文字转载自 CivilSociety 讨论区 】
发信人: onetiemyshoe (onetiemyshoe), 信区: CivilSociety
标 题: 选票上以少胜多
发信站: BBS 未名空间站 (Mon Nov 18 13:37:12 2013, 美东)
我们2014的目标是更多基层华裔领袖的成功当选 (可能主要是华人聚居区)。 但是2016
的目标是没有一个总统候选人愿意冒着落选的大风险散布不负责任的辱华言论,这就需
要 battleground states的星星之火了。
The concept of swing states, swing elections and block voting is very
powerful in democratic process.
http://www.270towin.com/presidential_map/starting_views.php
http://www.realclearpolitics.com/epolls/latest_polls/president/
(世界日报) In most of ... 阅读全帖
f**********n
发帖数: 29853
31
来自主题: Parenting版 - 投诉parenting版主封人 (转载)
你重复两遍"has nothing todo"就不需要任何论证了吗?
Abigail Fisher一案中支持种族录取制度的大法官的四位都是自由派大法官,譬如这次
obama提名的sotomayor.反对的都是保守派大法官,譬如写下名句“The way to stop
discrimination on the basis of race is to stop discriminating on the basis
of race' 的大法官John G. Roberts就是由布什提名的。
这一届总统非常非常重要是因为,有四名大法官高龄了。这届总统很可能有机会提名四
位大法官。四位大法官对美国的政治走向可以影响长达几十年。
关于左右派别和共产主义的联系,我就不和你详细探讨了。你收回你的光辉名句“所有
美国医学院都是私立的“先。

guess
s**u
发帖数: 9035
32
Please read this instuction if you haven't finish your J wiaver and you want
todo in the future. Also I added it in Top 6 post. Everyone can read it
anytime.
t**o
发帖数: 11
33
【 以下文字转载自 Family 讨论区 】
发信人: Todo ( 旷野流云), 信区: Family
标 题: social security card丢了咋办?
发信站: BBS 未名空间站 (Wed Aug 18 04:54:50 2010, 美东)
有点事需要用social security card,结果发现找不着了:(
只记得6月底考驾照的时候还用过,
有可能这个中间就丢了,反正不记得了
现在要怎么办?
查了一下,administration也不会发新号,
万一被人捡去盗用,怎么样会发现?
前2天倒是查过credit report,还正常。
b******y
发帖数: 9224
34
来自主题: StartUp版 - 小批量向国内运货
Thanks a lot, that's really good advice. I will add that to the list of
todos ;-)
b******y
发帖数: 9224
35
来自主题: StartUp版 - best way to track down todo list
我现在用tortoise svn, 任何修改都可以记录下来。我觉得比用啥google calendar,
或者google doc强多了。还是要高科技啊
s*********e
发帖数: 4475
36
来自主题: StartUp版 - best way to track down todo list
你这不是杀鸡用牛刀吗?
s****y
发帖数: 983
37
来自主题: StartUp版 - best way to track down todo list
哈哈
q***2
发帖数: 1861
38
来自主题: StartUp版 - best way to track down todo list
too many tech or "educated" people have this same problem when in transit to
start up a business - very sad phono...
b******y
发帖数: 9224
39
来自主题: StartUp版 - best way to track down todo list

So?
That's my way of doing things as a techie and I like it!
s*********e
发帖数: 4475
40
来自主题: StartUp版 - best way to track down todo list
雷军刚骂你呢:最恨“创业导师”
http://www.techweb.com.cn/people/2010-10-29/706364.shtml

transit to
b******y
发帖数: 9224
41
来自主题: StartUp版 - best way to track down todo list
haha.
Well, it is not sad at all. Not able to make money, to me, is SAD.
There is nothing wrong with tech, on the contrary, it gives you a leg where
you could make good money from being a good tech guy.
q***2
发帖数: 1861
42
来自主题: StartUp版 - best way to track down todo list
I in fact agree with him very much: 用人不疑,疑人不用,这个不止是对所谓“
mentor”们。 包括对合作伙伴,乃至骨干员工等等,与人合作,都是这样。 不能像
国人老板常做的那样:总想“制肘”他人,怕失控,怕被架空。。。
其实,越这样,越会被这样 - 尤其要是选错了人的话。
这里有一个“度”的问题。
另一方面,创业是一个实践性的活动,空谈没用。对实践性的活动,导师的适当点泼和
指导,绝对会有事半功倍的功用,可以少走弯路,不走错路。 就好比学跳民族舞一样
,没有导师肯定没戏。`好的舞蹈老师也很清楚:自己不可能代替学生去跳,会放手让
学生发挥。
创业绝对不是个比学跳民族舞容易的事,好的舞蹈老师也没有长期免费的。 很难想象
第一次创业的人,不以各种不同的方式找“老师”学 -包括跟工作上的老板“偷师” -
就会成功的。
其实这个创业版,就是在一定范围里,在初级程度上起着这末个作用。 大家不少人来
看为啥? 有一些免费的“舞蹈老师”啊! 呵呵
不过这个和前面谈的不一样的,那里说的是要避免用高射炮打蚊子,大马拉小车。。。

http://www.techwe... 阅读全帖
l*******o
发帖数: 12469
43
俺觉得这个作者说的东西有道理。但是真的要how to fix it,各位如何看?
Julie Ng, originally from Boston, now living in Munich as a designer and
entrepreneur.
The internet startup model is broken and how to fix it
The market for internet companies is broken. We cannot continue starting
companies with millions in venture capital and no business model from day
one that generates revenue, and more importantly profit.
Don't rejoice at Facebook's plummeting stock. It’s an ominous sign for us
all. Companies are willing to pay boatl... 阅读全帖
w******s
发帖数: 16209
44
主席模块也在我的todo list 上。。

省!
l*******e
发帖数: 435
45
中国股票是上下波动出名的,前几天是yoku上todo下的。
跟sina有关吧。不是sina买了tudo?
w********2
发帖数: 16371
46
来自主题: Stock版 - iOS5了,大家都升级了吧
几个东西不错,alert (messaging)没有以前那么烦人了
照片可以直接编辑了
todo 比以前好用了
自动在云上backup了
email 可以有字体了
。。。
k********n
发帖数: 18523
47
来自主题: Stock版 - 亚麻要火
亚麻kindle fire目前的硬伤是 US residents/customers travel out of USA
See what I got from amazon website:
Well, i call Amazon support and this is it : kindle reader app will work to
buy and read books and magazines. Also, with a wifi network, its posible to
use the internet (with or without their nav) todo surf. So things like check
your email, facebook, read the news, etc.. wont be a problem. Its not going
to work for music, video, movies or apps from Amazon appstore or prime
dowloading. Plus, Amazon in... 阅读全帖
c***u
发帖数: 190
48
你那个是economy stimulus package。 nothing todo with shedule M
f*****g
发帖数: 15860
49
来自主题: Working版 - 在公司被lead污蔑该怎么处理
你这个不算被污蔑,算自己让人抓了短。
lead没再提,不等于这事就不了了之了,你应该至少主动和B了解情况(哪怕10分钟),
然后和lead问一两次的,即可以覆盖自己屁股,又可以给人以认真负责,注意细节的态
度,还有旁证,而结果可能也是不了了之。你可以说这件事不是要紧的,但是确实在你
的todo单子上,每件事多少留个文档,哪怕是一张纸,一封email的report。
现在这个状况,看这句话在你总体的review上面占的分量,如果只是在需改进的项目上
,未必有你想的那么严重,有时候总得给你找点“缺点”“不足”。
而如果直接影响到你的提拔,那你需要和M讲清楚事情原委,这样至少M听到的是两种声
音,可以产生模糊化效应。和M谈以前,花点时间研究一下这个task,心里有些数,谈
话时姿态可以低一点,承认确实有交流不够的问题,因为只是口头比较随便的吩咐。而
你当初(其实是刚看的)看了以后,觉得有哪些问题(不要让人觉得是你彻底忘了,或者
偷懒)。
谈话中主动提出自己去和lead进一步讨论一下task解决方案(实际上变相消除误解,至
少大家有台阶下),这也是M希望看到的结果,和lead打打哈哈,说个廉价
C********g
发帖数: 1548
50
来自主题: Working版 - 怎么把活推掉
别加班!!
我们中国人这方面是最吃亏的。我的todo-list也是最长的(工资只是中等!),但我
不加班。并且我每天最多工作7个小时,天天迟到,经常早退。
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)