Redian新闻
>
如果国内患有糖尿病的亲人来美探亲,打算住半年,有谁知道注射用的胰岛素怎么解决啊?
avatar
如果国内患有糖尿病的亲人来美探亲,打算住半年,有谁知道注射用的胰岛素怎么解决啊?# Living
o*0
1
1.Give a set of prime numbers, output a set of all possible products.
2.add two unsigned numbers without using arithmetic operations
3.hamming distance sum for all pairs in an array
avatar
z*g
2
大姐有糖尿病,每天必须用胰岛素。半年需要40支。她想今年退休后来我这里住半年。
可是她半年需要40支胰岛素,这么多,海关能让带进来吗?
avatar
e*i
3
抛个砖
1. 可以用递归或者循环
#!/bin/python
def _rec_all_prod(primes):
if len(primes) == 1:
return primes
sub_prod = _rec_all_prod(primes[1:])
new_prod = sub_prod[:]
new_prod.append(primes[0])
for prod in sub_prod:
new_prod.append(prod*primes[0])
return new_prod
def get_prod_one(primes):
return set(_rec_all_prod(primes))
def _loop_all_prod(primes):
new_prod = []
for x in xrange(2**len(primes)):
mask = "{0:b}".format(x)[::-1]
total = 1
for b, v in zip(mask, primes):
if (b == '1'):
total *= v
if (total != 1):
new_prod.append(total)
return new_prod
def get_prod_two(primes):
return set(_loop_all_prod(primes))
if __name__ == "__main__":
primes1 = [2,3,5]
primes2 = [2,3,5,7,11]
print get_prod_one(primes1)
print get_prod_two(primes1)
print get_prod_one(primes2)
print get_prod_two(primes2)
avatar
j*i
4
没问题。只要有医生写个证明就行。
avatar
k*a
5
第二块砖
1. Lintcode的subset问题?
2. 按位(xor,然后进位)
3. 汉明距离的和。
感觉应该1列1列地看每列不同字符的个数,然后根据不同字符个数和总的字符串个数做
一个数学运算。gut feeling。
avatar
C*e
6
现在国内不走后门也不会让短期一下子买出40只胰岛素吧?医疗保险也报不了吧?
avatar
r*g
7
网上都能找到答案
avatar
m*r
8
签证的时候,你不要写信担保她,叫她自己担保自己。

【在 z******g 的大作中提到】
: 大姐有糖尿病,每天必须用胰岛素。半年需要40支。她想今年退休后来我这里住半年。
: 可是她半年需要40支胰岛素,这么多,海关能让带进来吗?

avatar
f*r
9
mark

【在 o******0 的大作中提到】
: 1.Give a set of prime numbers, output a set of all possible products.
: 2.add two unsigned numbers without using arithmetic operations
: 3.hamming distance sum for all pairs in an array

avatar
c*7
10
弄个保温瓶,写上英语的胰岛素.海关的人可以让过,没有问题.我妈带过1年的.
avatar
s*m
11
buy here.
avatar
z*g
12
多谢各位热心的回复。
如果在这里买的话,一定需要医生的处方吧?没有医保报销,胰岛素是不是很贵啊?
avatar
g*y
13
OTC Insulins are sold in Walmart Pharmacy for 25$/bottle. You will also need
syringe, which is OTC in most of the states. You can find more detail in
the link.
http://www.mitbbs.com/article_t0/Reunion/31511591.html
I changed my opinion aboutWalmart because of this. I have bought the same
bottle for $300 after begging the pharmacist.

【在 z******g 的大作中提到】
: 大姐有糖尿病,每天必须用胰岛素。半年需要40支。她想今年退休后来我这里住半年。
: 可是她半年需要40支胰岛素,这么多,海关能让带进来吗?

avatar
z*g
14
多谢,多谢。你提供的信息太有用了。

need

【在 g****y 的大作中提到】
: OTC Insulins are sold in Walmart Pharmacy for 25$/bottle. You will also need
: syringe, which is OTC in most of the states. You can find more detail in
: the link.
: http://www.mitbbs.com/article_t0/Reunion/31511591.html
: I changed my opinion aboutWalmart because of this. I have bought the same
: bottle for $300 after begging the pharmacist.

相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。