Redian新闻
>
NIH chief, section chief是什么职务
avatar
NIH chief, section chief是什么职务# Biology - 生物学
B*1
1
Given Numerator and Denominator. After division you might get a recurring
decimal points float as the answer. You need to identify the recurring part?
For example 23.34563456 ...
return 3456
完全没有idea,请大牛们指教。
avatar
h*e
2
【 以下文字转载自 Military 讨论区 】
发信人: laodou (别拿豆包不当干粮), 信区: Military
标 题: 小平哥当年得迷倒多少少女啊
发信站: BBS 未名空间站 (Thu Jun 2 16:32:21 2011, 美东)
这眼神,杀人啊
avatar
c*y
3
老板这里没钱了,准备走人
联系了NIH得老板,头衔是 chief, and section chief
想知道这在NIH是什么level啊?
谢谢了!
avatar
d*y
4
小学的时候笔算,当出现相同的余数就开始循环了。
用hash记录小数点后面每一位的余数?
avatar
e*d
5
小平基因突变了

【在 h***e 的大作中提到】
: 【 以下文字转载自 Military 讨论区 】
: 发信人: laodou (别拿豆包不当干粮), 信区: Military
: 标 题: 小平哥当年得迷倒多少少女啊
: 发信站: BBS 未名空间站 (Thu Jun 2 16:32:21 2011, 美东)
: 这眼神,杀人啊

avatar
F*Q
6
NIH的chief头衔还不错。好像大部分实验室老板都是chief。
顺便提一下,找工作如果有多项选择,你再比较,如果是单项选择,那就没什么好说的
了。

【在 c***y 的大作中提到】
: 老板这里没钱了,准备走人
: 联系了NIH得老板,头衔是 chief, and section chief
: 想知道这在NIH是什么level啊?
: 谢谢了!

avatar
f*t
7
我觉得可以把余数放进set
先取余数,然后不断乘以10再取余
如果发现重复的余数,从它开始不断取商放进结果中,直到余数再次重复,所得的就是循环的数字
avatar
o*1
8
比周恩来酷多了

【在 h***e 的大作中提到】
: 【 以下文字转载自 Military 讨论区 】
: 发信人: laodou (别拿豆包不当干粮), 信区: Military
: 标 题: 小平哥当年得迷倒多少少女啊
: 发信站: BBS 未名空间站 (Thu Jun 2 16:32:21 2011, 美东)
: 这眼神,杀人啊

avatar
v*m
9
恭喜了,这个是pi级别的,你还能带人。

【在 c***y 的大作中提到】
: 老板这里没钱了,准备走人
: 联系了NIH得老板,头衔是 chief, and section chief
: 想知道这在NIH是什么level啊?
: 谢谢了!

avatar
k*n
10
do it directly as you do by hand?
int division(int numerator, int denominator) {
HashMap remainders = new HashMap();
StringBuffer sb = new StringBuffer();
sb.append(numerator / denominator).append(".");
return helper(numerator % denominator, denominator, remainders, sb);
}
int helper(int n, int d, HashMap remainders, StringBuffer
result) {
if (n == 0) return 0; // non-recurring
if (remainders.containsKey(n)) {
return result.toString().substring(remainders.get(n).length());
}
remainders.put(n, result.toString());
int r = 10 * n % d;
return helper(r, d, remainders, result.append(10*n / d));
}

part?

【在 B*******1 的大作中提到】
: Given Numerator and Denominator. After division you might get a recurring
: decimal points float as the answer. You need to identify the recurring part?
: For example 23.34563456 ...
: return 3456
: 完全没有idea,请大牛们指教。

avatar
h*i
11
邓小平?
avatar
c*y
12
你们可能误会了,老板是chief, offer得position只是postdoc

【在 v**********m 的大作中提到】
: 恭喜了,这个是pi级别的,你还能带人。
avatar
k*n
13
说的是记录余数,不是除的结果
avatar
c*5
14
小平当时没这么成熟吧?

【在 h***e 的大作中提到】
: 【 以下文字转载自 Military 讨论区 】
: 发信人: laodou (别拿豆包不当干粮), 信区: Military
: 标 题: 小平哥当年得迷倒多少少女啊
: 发信站: BBS 未名空间站 (Thu Jun 2 16:32:21 2011, 美东)
: 这眼神,杀人啊

avatar
c*y
15
是想说跟这种老板有没有前途??

【在 v**********m 的大作中提到】
: 恭喜了,这个是pi级别的,你还能带人。
avatar
S*I
16
OK, I see

【在 k****n 的大作中提到】
: 说的是记录余数,不是除的结果
avatar
a*c
17
太帅了
avatar
v*m
18
那就是一个小老板,一般nih的大老板除了section chief 还是Lab的chief。有没有前
途就不清楚了。除了很少比例的博后能转成staff scientist,其它的跟外面差不多。

【在 c***y 的大作中提到】
: 你们可能误会了,老板是chief, offer得position只是postdoc
avatar
d*d
19
string find_circle(int x, int y){
typedef unordered_set ISET;
ISET iset;
int i = x/y;
x = x-i*y;
string res = "";
while(x>0){
x = x*10;
pair ret = iset.insert(x);
if( ret.second == false)
break;
i = x/y;
x = x - i*y;
char c = '0' + i;
res += c;
}
return res;
}
avatar
c*y
20
section chief 通常会有很多个lab吗?

【在 v**********m 的大作中提到】
: 那就是一个小老板,一般nih的大老板除了section chief 还是Lab的chief。有没有前
: 途就不清楚了。除了很少比例的博后能转成staff scientist,其它的跟外面差不多。

avatar
S*I
21
I think your code needs a small modification: there could be leading 0's in
the return string and they should be removed.

【在 k****n 的大作中提到】
: do it directly as you do by hand?
: int division(int numerator, int denominator) {
: HashMap remainders = new HashMap();
: StringBuffer sb = new StringBuffer();
: sb.append(numerator / denominator).append(".");
: return helper(numerator % denominator, denominator, remainders, sb);
: }
: int helper(int n, int d, HashMap remainders, StringBuffer
: result) {
: if (n == 0) return 0; // non-recurring

avatar
v*m
22
Lab下面可能有section

【在 c***y 的大作中提到】
: section chief 通常会有很多个lab吗?
avatar
k*n
23
I think I have removed them...
But I haven't checked my code, maybe you are right, thanks...

in

【在 S**I 的大作中提到】
: I think your code needs a small modification: there could be leading 0's in
: the return string and they should be removed.

avatar
c*y
24
谢谢!
还有个问题,如果同时联系了几个lab, interview的时候,如果被问道还有其它
interview吗, 如实回答吗?

【在 v**********m 的大作中提到】
: Lab下面可能有section
avatar
F*Q
25
你可以模糊地说还联系了几家,正在谈,情况还不明了,尽量不要和盘托出。

【在 c***y 的大作中提到】
: 谢谢!
: 还有个问题,如果同时联系了几个lab, interview的时候,如果被问道还有其它
: interview吗, 如实回答吗?

avatar
T*u
26
一个所下面分多个division,每个division的 头是chief。每个division下面又分
section,每个section就是一个pi负责的lab。你联系的这个人是自己lab的pi也是这个
division的chief。division chief权利挺大的,掌握下面pi的钱和人

【在 c***y 的大作中提到】
: 老板这里没钱了,准备走人
: 联系了NIH得老板,头衔是 chief, and section chief
: 想知道这在NIH是什么level啊?
: 谢谢了!

avatar
r*8
27
好像应该是一个所分多个division,头头叫director,然后division下面分branch,这个
头头才是chief.然后再是lab,成为section chief.

【在 T*****u 的大作中提到】
: 一个所下面分多个division,每个division的 头是chief。每个division下面又分
: section,每个section就是一个pi负责的lab。你联系的这个人是自己lab的pi也是这个
: division的chief。division chief权利挺大的,掌握下面pi的钱和人

avatar
T*u
28
好像你说的对,之前把branch和division搞混了。
不过一般lab头我们都不叫chief, branch头叫chief。

【在 r******8 的大作中提到】
: 好像应该是一个所分多个division,头头叫director,然后division下面分branch,这个
: 头头才是chief.然后再是lab,成为section chief.

avatar
c*y
29
oh.
还有就是拿 485 pending的EAD能去nih 作 postdoc 吗?

【在 F*Q 的大作中提到】
: 你可以模糊地说还联系了几家,正在谈,情况还不明了,尽量不要和盘托出。
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。