由买买提看人间百态

topics

全部话题 - 话题: simplest
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
f**********7
发帖数: 265
1
来自主题: JobHunting版 - 问一下小公司办H1B的事情
it is ok. H1b is the simplest visa. They only care: 1, the company is real
not fake on; 2, the company has strong financial to support you; 3, this job
matches your background (most people get RFE here, so just make the job
description more technical and professional)
Lots of ICC can sponsor people not to mention your company.. so do not worry
..
i******e
发帖数: 273
2
来自主题: JobHunting版 - 请教个题
If you have numbers in a 10,000 item array that range from 1 to 1 million,
and there is one duplicate. How do you find the duplicate with the simplest
algorithm?
这题除了用hashtable和bitmap以外还有更好的方法吗? 谢谢
C***U
发帖数: 2406
3
来自主题: JobHunting版 - 请教个题
排序算法呗。空间省了,时间多了。

simplest
h**i
发帖数: 219
4
The simplest method is by recursion: if you have k letters, then print the
first letter, call the function on the remaining (k-1) letters;
then second letter, and so on.
c******4
发帖数: 22
5
来自主题: JobHunting版 - 请教一道公司面试题
By default, the hashcode() in Object class returns unique value, which is
decided by
the address of the object in memory.
Say, you have a HashMap map,
and you do following map.put(new Object(), 1) twice,
then map will have two entries.
So you can override the hashcode() to resolve this if this is not what you
need.
Then you may talk about the entry bucket, and collisions.
The position of the entry is decided by a hash function, say the simplest
one, mode % size of bucket.
How ca... 阅读全帖
w**z
发帖数: 8232
6
二爷威武阿,走在大家前头阿。下一步该搞open source?
http://www.javaworld.com/javaworld/jw-03-2013/130314-on-becomin
Developer tip No. 1: Blog
Set up a blog, and post more than once a month. Do real research and make
sure you don't sound stupid. Seriously, learn to write. Do the stuff your
grade-school English teacher taught you: Create an outline, draw a narrative
, check the grammar and spelling. Then, with great sadness, simplify it and
shorten it to the point enough where someone scanning it will have an idea
of... 阅读全帖
n**n
发帖数: 626
7
来自主题: JobHunting版 - 某公司两个题面跪了
It is possible to always achieve the target n with three cups? How to prove
this?
I'm imaging another case with only two cups:
Assume there is a large enough holder cup to hold the target water, and
there are two measured cups,
cups = 3,2
target: 7 = 3+3+(3-2) ; get 2 3cup into holder and then get the remaining
water in 3cup-2cup into it
cups = 9,8
target: 7 = 8-(9-8) ; it might not be possible to do this with cups,
possible way is: 7 = (9-8) + (9-8) + ...
cups = 9,5 ; with these two cups we ca... 阅读全帖
d**********x
发帖数: 4083
8
来自主题: JobHunting版 - 问一道题 实现malloc
i guess the simplest impl should be the one in K&R...
w*******e
发帖数: 395
9
来自主题: JobHunting版 - G家电面,已挂
if coding in interviews, start from the simplest cases. Then, at least, you
can finish the coding. Then tell the interviewers the cases your codes
cannot cover and try to optimize it.
if you tell them a very complicate algorithm which covers a lot of cases,
you will get into a trap and cannot finish the codes. Then the result will
be a rejection.
w*******e
发帖数: 395
10
来自主题: JobHunting版 - G家电面,已挂
if coding in interviews, start from the simplest cases. Then, at least, you
can finish the coding. Then tell the interviewers the cases your codes
cannot cover and try to optimize it.
if you tell them a very complicate algorithm which covers a lot of cases,
you will get into a trap and cannot finish the codes. Then the result will
be a rejection.
c******n
发帖数: 4965
11
来自主题: JobHunting版 - RESTful 到底有啥优势呢
it's u that's not getting it.
of course u can just use protobuf just as an envolope, in that sense it's
parallel to XML JSON.
but protobuf thrift avro all come with an RPC server , which gives u a sever
equivalent to http server + rest
I don't know why u keep arguing on this cuz the simplest way to see it is to
look at the documentation , which simply says that they provide an RPC
server,(apart from encapsulating)
m*****k
发帖数: 731
w*****d
发帖数: 105
13
来自主题: JobHunting版 - 问一道面试题
Consider the simplest case: A={2}, then any odd number below N is OK, so the
result would be (N - N/2). Then consider A={2, 3}, any number below N that
is not mutiply of 2 or 3 is OK, so the result would be (N - N/2 - N/3 + N/6)
. Then consider A={2, 3, 5}, the result would be (N - N/2 - N/3 - N/5 + N/6
+ N/10 + N/15 - N/30).
So there is a general rule:
for A={a1, a2, ..., aN}, if ai is not dividable by aj for any i != j, then
we could:
1. for i from 1 to N, calc r1 = N - SUM(N/ai);
2. for i, j ... 阅读全帖
k****t
发帖数: 184
14
来自主题: JobHunting版 - 一道算法题
If you have numbers in a 10,000 item array that range from 1 to 1 million,
and there is one duplicate. How do you find the duplicate with the simplest
algorithm?
我想到一种方法是从左到右,对每一个数字扫描其之后的数字。
另一种方法是用一个set,从左到右依次往set里面加,set.contains(...)来判断是否
是重复。
请问,有没有更好的方法?
b**********5
发帖数: 7881
15
来自主题: JobHunting版 - 一道算法题
use a bit vector? just less space

simplest
m*****n
发帖数: 204
16
来自主题: JobHunting版 - onsite大概到什么水平才能通过g家

Looks like you need improvement in the so-called 'communication' area.
Asking the right questions would help a lot. If you just start coding
without a word, it could be a problem to some interviewers.
Try follow these routines:
1. Repeat the question in your own words.
2. If applicable, ask about scale requirements.
3. Discuss boundary conditions, see if you may ignore some to make coding
easier
4. Explain your thoughts and intentions, even in the simplest cases. Use
test case data, drawings or... 阅读全帖
m**********3
发帖数: 229
17
来自主题: JobHunting版 - 急求这道题的解答
本人QA,测试数据库,老板给了一题让我做做玩玩,我不太会,请教版上大牛,谢谢!
!!
Background
In simplest terms, Accumulo is a sorted key/value store. It stores mappings
of keys to values, and all key/value entries are sorted by key. This allows
fast indexed access for get and put calls, and also supports quickly
scanning all entries starting at or near a specific key.
Accumulo distributes work across a cluster of servers by designating
responsibility for different ranges of keys to different servers. In
Accumulo terminology, each ran... 阅读全帖
e***e
发帖数: 168
18
来自主题: JobHunting版 - graphsql internship 内推
The Language/Usability Team at GraphSQL focuses on innovative compiler
algorithms and usability tools to close the gap between human reasoning/
intuition and activating graph data. An ideal candidate is passionate about
delivering broad solutions through forward-thinking architecture and
implementing high-quality compiler products with the simplest and most
intuitive user interaction design in mind.
Responsibilities:
Design and implement domain-specific query language engine.
Perform unit and... 阅读全帖
e***e
发帖数: 168
19
来自主题: JobHunting版 - core engineer team at TigerGraph
The Engineering team at TigerGraph (in Silicon Valley) has built the world's
fastest real-time Graph Analytics platform. We are seeking multiple
software engineers to add to our world-class core engineering team. We build
high-performance parallel distributed graph management system, and develop
innovative compiler algorithms and usability tools to close the gap between
human reasoning/intuition and activating graph data. An ideal candidate is
passionate about delivering broad software stack thr... 阅读全帖
e***e
发帖数: 168
20
来自主题: JobHunting版 - 无标题
The Engineering team at TigerGraph (in Silicon Valley) has built the world's
fastest real-time Graph Analytics platform. We are seeking multiple
software engineers to add to our world-class core engineering team. We build
high-performance parallel distributed graph management system, and develop
innovative compiler algorithms and usability tools to close the gap between
human reasoning/intuition and activating graph data. An ideal candidate is
passionate about delivering broad software stack thr... 阅读全帖
e***e
发帖数: 168
21
来自主题: JobMarket版 - core engineer team at TigerGraph
The Engineering team at TigerGraph (in Silicon Valley) has built the world's
fastest real-time Graph Analytics platform. We are seeking multiple
software engineers to add to our world-class core engineering team. We build
high-performance parallel distributed graph management system, and develop
innovative compiler algorithms and usability tools to close the gap between
human reasoning/intuition and activating graph data. An ideal candidate is
passionate about delivering broad software stack thr... 阅读全帖
t***s
发帖数: 4666
22
use mouse traps, those simplest ones.
w******i
发帖数: 1899
23
Belong to townhouse.
It is simplest townhouse.It is called twine home
h*********7
发帖数: 811
24
we did wire from checking account with about $15 wire fee since our bank
doesn't have local branch here. ur escrow company should give you wire
instructions. if you have branch here, just go get a cashier check which is
the simplest way.
C*******d
发帖数: 15836
25
If you use air conditioner and there are vents in the basement, eventually
the basement air will be mixed with the air in the upper levels, then the
mold can affect the health of your family, which is a very bad thing.
So it is better for you to clean as much as possible before it gets worse or
cause more damage. The simplest way is to use a mop with bleach mixed with
water, as 10% as I heard, to thoroughly clean the molded area.

dehumidifier
r****x
发帖数: 1250
26
来自主题: Living版 - 有人用Lennox G71MPP的furnace吗?
I don't have this particular model, and am not an expert in this area. I had
a similar problem and learned a few things. If you haven't tried this,
please start with the simplest thing: pull out your air filter and see if it
improves. If you are using some good filters, such as the pleated filter
from Costco, the chance is the filter is blocking air flow. You may want to
use a different type of filter.
M******n
发帖数: 138
27
bi-weekly is 99% FRAUD, if not 100%.
with the simplest mortgage spreadsheet, you will see how you are ripped-off.
b*d
发帖数: 9308
28
来自主题: Living版 - 买房中介费具体退法
this is the simplest way, but buyer would like to keep the purchase price as
high as possible if they are not paying one dime more. The other benefit is
the out-of-pocket cost will be low.
i*****0
发帖数: 1113
29
来自主题: Living版 - 墙上钻的洞应该怎么补?
painting is the simplest since these holes are quite small.
u****q
发帖数: 24345
30
来自主题: Living版 - 5700sqft lot,剪草机怎么选?
5700 sq ft lot translates into maybe 1000-2000 sq ft lawn. I would not
bother with anything other than the simplest mower.
k******o
发帖数: 3328
31
Most lender will ask you to source any large deposit in your submitted bank
statement. Not all lender/underwriter are familiar with the Chinese banking
system. If your mortgage broker is not experienced and picks the lender with
the stringent requirement (i.e. PF funding), it might have the issue.
Normally if your funds could stay in your bank more than 2 month, you are
quite safe. This is one of the simplest approach among others.
l*********l
发帖数: 49
32
I just picked a simplest & cheapest model, it doesn't have any drawers at
all...roughly $230 for queen, I think
p**********9
发帖数: 3463
33
send the kid to private school for K-5 - simplest way.
J****n
发帖数: 937
34
来自主题: Living版 - 包子求助:邻居要砍我家的树
Here is the simplest solution for you: just say no to the contractor. Do not
listen to your neighbor's contractors, they don't have your best interest
in their minds.
If you think the tree should be trimmed, find your own contractor. But from
the picture, this tree does not need to be trimmed.
Leave the tree alone, it is not that easy to survive for 40 years.
J****n
发帖数: 937
35
You probably need to find where the rats come in to the attic, if you don't
block where they enter the attic, you'll have more coming.
I once saw a rat climb on the side wall of my house, then went in the attic
through a gap under the roof, I blocked the gap, the bad thing is that that
forced rats in the attic to go the other way which is into the house. I then
went on a business trip and received daily report from my wife of rat
killing, she killed the whole rat family, 8 of them, using the sim... 阅读全帖
S***7
发帖数: 657
36
来自主题: Living版 - 对付noisy邻居
原文copy在这里:
**************************************
Everything you wanted to know about your noisy neighbors.
My neighbors are so noisy, are they breaking the law?
It's a good bet that your neighbors are in fact breaking the law. In almost
every community, there are laws and ordinances that prohibit excessive,
unnecessary and unreasonable levels of noise. Most of the time, these laws
are enforced by the police. If you are curious about the laws in your area,
you should look them up.
There are a nu... 阅读全帖
J*********2
发帖数: 351
37
来自主题: Living版 - 有木有人买过auction的房子
It can be predicted if you know the area well enough so experienced flipper
will have better chance.
The simplest case is to take it down and rebuild
I******A
发帖数: 38
38
Lender generally will request the tax transcript from IRS to compare the
actual one you provided to make sure all numbers are match, and once it was
verified, they can proceed to use whatever income you filed on tax because
it is true and valid. If they only use your copy, even with W2, how are you
going to show lender that your copy is the final one, and you didn't alter
anything on it? So tax validation is one of the necessary verify process.
For those who filed in April, since IRS has a huge ... 阅读全帖
z*****8
发帖数: 2546
39
【 以下文字转载自 Automobile 讨论区 】
发信人: zhang88 (david), 信区: Automobile
标 题: 最实用,最简单的DIY手机/GPS Mount
发信站: BBS 未名空间站 (Tue Apr 7 11:53:52 2015, 美东)
最实用,最简单的DIY手机/GPS Mount
If you want to use your cell phone's map as a GPS, or if you can't use your
GPS windshield mounts because it is illegal in over half the U.S, then this
video will provide you with the cheapest and simplest ideas for all
different types of cars.
z*****8
发帖数: 2546
40
最简单的妙法马桶漏水实验及修理
Most people don't realize their toilet leaks water to the drain because it
does not leak onto the bathroom floor where it can be noticed. However it
does waste water. Mostly likely by the time you realize your toilet leaks,
it has already leaked for months at a low frequency when you are not at home
or not paying attention. How do you know which toilet leaks, and how can
you detect such leaks early on and identify which part of the toilet is
responsible for the leak? Today, I am... 阅读全帖
y*j
发帖数: 3139
41
这是你本人吗?
我一般是关掉进水阀,然后用铅笔在水面上画一条线,过一个小时再看有没有漏水。

:最简单的妙法马桶漏水实验及修理
:Most people don't realize their toilet leaks water to the drain
because it
:does not leak onto the bathroom floor where it can be noticed. However it
:does waste water. Mostly likely by the time you realize your toilet leaks,
:it has already leaked for months at a low frequency when you are not at
home or not paying attention. How do you know which toilet leaks, and how
can
:you detect such leaks early on and identify which part o... 阅读全帖
b**********y
发帖数: 7371
42
来自主题: Living版 - 浴缸的spout有人换过吗?
周围垫上毛巾啥的,准备一块海绵吸水,漏了马上就擦。
放心,那些contractor经常mess up the simplest tasks
n******s
发帖数: 210
43
another several points.
Family doctors and internal medicine doc approach the patient in different
ways. FP always put the simplest and commonest one first, treat, if fail,
next one or refer to specialist. While internist makes a list of
differentials, and try to rule out one by one.
And another one is: remember, even one question can change the diagnosis
totally, e.g. if you told me there is trace of blood in your sputum, then
what I listed above is totally wrong. that's why I told you that you
n******s
发帖数: 210
44
there are certain websites for the rank of the doctors. but I can not find
it.
select the PCP that your friends recommend, this is simplest and most
efficient way.
t*******n
发帖数: 4445
45

School, employment and immigration are all I can think of.

Many US schools require 2 doses of MMR. If you don't have proof of the
second one (or they don't accept your oral explanation), the simplest
solution is pay $80 and get a shot.
t*******n
发帖数: 4445
46
They need to be sure you are not pregnant at the time of the procedure. So
the simplest alternative is not to have sex during that month.
If I were you, I wouldn't try to conceive before this is figured out...


没有
c********e
发帖数: 496
47
if infection is suspected, the simplest and golden standard is culture and
sensitivity test, why not go for it?
p****x
发帖数: 4260
48
老有人问rebate gc剩下来一些余额怎么办。刚才从slickdeals看到一篇文章,觉得不
错。
Folks... simplest thing to do is to convert rebate cards to gift cards at
groceries or retails chains like lowes, walmart...etc... everyone buys
groceries and you don't have to worry about how much balance in the gift
card...much better option than Amazon..
So here are the different ways (besides the normal way when you have a large
balance which covers the cost):
1. Tell cashier exact amount to charge (you need to know exact balance at
the time
G*******h
发帖数: 836
49
Have you ever talked to banks? I know simplest way is security card where
you deposit some money and use that as your credit limit, after a year when
your credit history is good enough, you will be able to get other credit
card and get your eposit back.
y***m
发帖数: 7027
50
来自主题: Money版 - Chase Ink Bold 50k有限制么
身份有限制么? H/F签证得可以申么?
Business Credit Card Eligibility
Many people aren’t aware of the fact that they can apply for business
credit cards, even if they are not a corporation or LLC. Why? Because any
individual can be a business as well. The business type is called a sole
proprietorship. Perhaps you sell items on eBay, Craiglist, or Etsy. Maybe
you do some freelancing and/or consulting. You might have gotten a 1099 tax
form and filled out a Schedule C. Boom! You’re a sole proprietorship. This
is th... 阅读全帖
首页 上页 1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)