Redian新闻
>
Share my petition letter for NIW and list of exhibit
avatar
Share my petition letter for NIW and list of exhibit# Immigration - 落地生根
B*1
1
Given an int array which might contain duplicates, find if it is a sequence.
Eg. {45,50,47,46,49,48}
is a sequence 46,47,48,49,50
Sorting is an obvious solution. Can this be done in O(n) time and O(1) space
avatar
j*a
2
New EB-1A package was just re-submitted yesterday. if approved, I will
share my new package with you.I feel the new package is much better than the
NIW package.
Google scholar was used for citation.
In past years, I learn a lot in this board. Except for the application fee,
I did not spend any other money. I never consult with lawyers. Others told
me that the lawyer fee in my district is $ 5,000 for NIW. You also can DIY.
Below is my petition letter without my husband's personal information which
is 10 pages only.
avatar
y*g
3
不懂,有duplicate还算sequence吗?
avatar
d*g
4
谢谢分享你的材料。
Bless.

the
,
told
which

【在 j*****a 的大作中提到】
: New EB-1A package was just re-submitted yesterday. if approved, I will
: share my new package with you.I feel the new package is much better than the
: NIW package.
: Google scholar was used for citation.
: In past years, I learn a lot in this board. Except for the application fee,
: I did not spend any other money. I never consult with lawyers. Others told
: me that the lawyer fee in my district is $ 5,000 for NIW. You also can DIY.
: Below is my petition letter without my husband's personal information which
: is 10 pages only.

avatar
A*u
5
这可能有O(1) O(n)的?

sequence.
space

【在 B*******1 的大作中提到】
: Given an int array which might contain duplicates, find if it is a sequence.
: Eg. {45,50,47,46,49,48}
: is a sequence 46,47,48,49,50
: Sorting is an obvious solution. Can this be done in O(n) time and O(1) space

avatar
l*t
6
bless!

发信人: joymama (快乐妈妈), 信区: Immigration
标 题: Share my petition letter for NIW and list of exhibit
发信站: BBS 未名空间站 (Thu May 19 16:59:41 2011, 美东)
New EB-1A package was just re-submitted yesterday. if approved, I will
share my new package with you.I feel the new package is much better than the
NIW package.
Google scholar was used for citation.
In past years, I learn a lot in this board. Except for the application fee,
I did not spend any other money. I never consult with lawyers. Others told
me that the lawyer fee in my district is $ 5,000 for NIW. You also can DIY.
Below is my petition letter without my husband's personal information which
is 10 pages only.

【在 j*****a 的大作中提到】
: New EB-1A package was just re-submitted yesterday. if approved, I will
: share my new package with you.I feel the new package is much better than the
: NIW package.
: Google scholar was used for citation.
: In past years, I learn a lot in this board. Except for the application fee,
: I did not spend any other money. I never consult with lawyers. Others told
: me that the lawyer fee in my district is $ 5,000 for NIW. You also can DIY.
: Below is my petition letter without my husband's personal information which
: is 10 pages only.

avatar
B*1
7
应该不算。

【在 y*******g 的大作中提到】
: 不懂,有duplicate还算sequence吗?
avatar
a*a
8
Thank you for sharing
God bless your New EB1-A application!

the
,
told
which

【在 j*****a 的大作中提到】
: New EB-1A package was just re-submitted yesterday. if approved, I will
: share my new package with you.I feel the new package is much better than the
: NIW package.
: Google scholar was used for citation.
: In past years, I learn a lot in this board. Except for the application fee,
: I did not spend any other money. I never consult with lawyers. Others told
: me that the lawyer fee in my district is $ 5,000 for NIW. You also can DIY.
: Below is my petition letter without my husband's personal information which
: is 10 pages only.

avatar
c*p
9
are mathematical methods possible?
1. max - min == n - 1; // not able to deal with duplicates.
2. check with sum(a[i]) and sum(a[i]^2); // any possible exceptions?
3. xor; // easy to get a false positive.
combine 1 & 2 together might be feasible but not sure whether they work for
all the corner cases.

sequence.
space

【在 B*******1 的大作中提到】
: Given an int array which might contain duplicates, find if it is a sequence.
: Eg. {45,50,47,46,49,48}
: is a sequence 46,47,48,49,50
: Sorting is an obvious solution. Can this be done in O(n) time and O(1) space

avatar
c*n
10
Thanks for sharing.

the
,
told
which

【在 j*****a 的大作中提到】
: New EB-1A package was just re-submitted yesterday. if approved, I will
: share my new package with you.I feel the new package is much better than the
: NIW package.
: Google scholar was used for citation.
: In past years, I learn a lot in this board. Except for the application fee,
: I did not spend any other money. I never consult with lawyers. Others told
: me that the lawyer fee in my district is $ 5,000 for NIW. You also can DIY.
: Below is my petition letter without my husband's personal information which
: is 10 pages only.

avatar
v*k
11
bit operation?
avatar
t*o
12
thanks for sharing
huge bless

the
,
told
which

【在 j*****a 的大作中提到】
: New EB-1A package was just re-submitted yesterday. if approved, I will
: share my new package with you.I feel the new package is much better than the
: NIW package.
: Google scholar was used for citation.
: In past years, I learn a lot in this board. Except for the application fee,
: I did not spend any other money. I never consult with lawyers. Others told
: me that the lawyer fee in my district is $ 5,000 for NIW. You also can DIY.
: Below is my petition letter without my husband's personal information which
: is 10 pages only.

avatar
b*y
13
这个好像有点难度,第二个的exception应该比较多,特别是元素个数非常多的情况下。
例如,-6,-5,-4,-3,-2,-1,0,1,2,3,4,5,6
和 -6,-5,-5,0,-2,-1,0,1,2,0,5,5,6
用了5^2 = 4^2 + 3^2

for

【在 c****p 的大作中提到】
: are mathematical methods possible?
: 1. max - min == n - 1; // not able to deal with duplicates.
: 2. check with sum(a[i]) and sum(a[i]^2); // any possible exceptions?
: 3. xor; // easy to get a false positive.
: combine 1 & 2 together might be feasible but not sure whether they work for
: all the corner cases.
:
: sequence.
: space

avatar
x*i
14
thanks a lot for sharing. Good luck on your application.
avatar
B*1
15
似乎如果可以改array的话,可以O(n).
avatar
s*n
16
Thx.
avatar
a*y
17
say array A find the max and min,
then find a way to put min at A[0], max at A[n-1] and so on in O(n) time.

sequence.
space

【在 B*******1 的大作中提到】
: Given an int array which might contain duplicates, find if it is a sequence.
: Eg. {45,50,47,46,49,48}
: is a sequence 46,47,48,49,50
: Sorting is an obvious solution. Can this be done in O(n) time and O(1) space

avatar
R*s
18
thanks!

the
,
told
which

【在 j*****a 的大作中提到】
: New EB-1A package was just re-submitted yesterday. if approved, I will
: share my new package with you.I feel the new package is much better than the
: NIW package.
: Google scholar was used for citation.
: In past years, I learn a lot in this board. Except for the application fee,
: I did not spend any other money. I never consult with lawyers. Others told
: me that the lawyer fee in my district is $ 5,000 for NIW. You also can DIY.
: Below is my petition letter without my husband's personal information which
: is 10 pages only.

avatar
c*p
19
这个不错

【在 a***y 的大作中提到】
: say array A find the max and min,
: then find a way to put min at A[0], max at A[n-1] and so on in O(n) time.
:
: sequence.
: space

avatar
i*u
20
3X for sharing, and Bless all of us!
avatar
D*e
21
It's not O(n). It's O(n^2)

【在 a***y 的大作中提到】
: say array A find the max and min,
: then find a way to put min at A[0], max at A[n-1] and so on in O(n) time.
:
: sequence.
: space

avatar
g*i
22
Thanks for sharing. Bless for your EB1a!
avatar
c*p
23
应该是这样,先把min和max分别放在A[0],A[n-1],
然后对于A[i],且A[i]-min != i,则将其和A[A[i]-min]换,如果A[A[i]-min]==A[i],
那就fail了(有重复的)。
换完之后再扫一遍,如果有A[i] != i+min的就fail,否则就成功。

【在 a***y 的大作中提到】
: say array A find the max and min,
: then find a way to put min at A[0], max at A[n-1] and so on in O(n) time.
:
: sequence.
: space

avatar
R*d
24
Thanks for sharing. Bless for your EB1a!
avatar
y*g
25
扫一遍找到最大和最小 O(n)
如果最大最小只差不是 size-1, false
如果是size-1, 则有两种情况,有重复,和sequence,
这样就转化成了这道题目:
http://www.mitbbs.com/article_t/JobHunting/31947559.html
用linkedlist找loop的方法, O(n)
avatar
m*1
26
Thanks a lot for sharing. Good luck for your EB1a. Wait for your good news
.
avatar
B*1
27
thanks,那个帖子里面最后那个dead loop怎么解决啊?

【在 y*******g 的大作中提到】
: 扫一遍找到最大和最小 O(n)
: 如果最大最小只差不是 size-1, false
: 如果是size-1, 则有两种情况,有重复,和sequence,
: 这样就转化成了这道题目:
: http://www.mitbbs.com/article_t/JobHunting/31947559.html
: 用linkedlist找loop的方法, O(n)

avatar
h*a
28
thanks for sharing
avatar
D*e
29
I think this is correct.

],

【在 c****p 的大作中提到】
: 应该是这样,先把min和max分别放在A[0],A[n-1],
: 然后对于A[i],且A[i]-min != i,则将其和A[A[i]-min]换,如果A[A[i]-min]==A[i],
: 那就fail了(有重复的)。
: 换完之后再扫一遍,如果有A[i] != i+min的就fail,否则就成功。

avatar
H*7
30
thank you and Good luck!
avatar
A*u
31
我的神哪
你砸想到的
我看的下标都晕了

],

【在 c****p 的大作中提到】
: 应该是这样,先把min和max分别放在A[0],A[n-1],
: 然后对于A[i],且A[i]-min != i,则将其和A[A[i]-min]换,如果A[A[i]-min]==A[i],
: 那就fail了(有重复的)。
: 换完之后再扫一遍,如果有A[i] != i+min的就fail,否则就成功。

avatar
q*d
32
非常感谢!请问一下个人信息里面主要写哪些内容?

the
,
told
which

【在 j*****a 的大作中提到】
: New EB-1A package was just re-submitted yesterday. if approved, I will
: share my new package with you.I feel the new package is much better than the
: NIW package.
: Google scholar was used for citation.
: In past years, I learn a lot in this board. Except for the application fee,
: I did not spend any other money. I never consult with lawyers. Others told
: me that the lawyer fee in my district is $ 5,000 for NIW. You also can DIY.
: Below is my petition letter without my husband's personal information which
: is 10 pages only.

avatar
c*p
33
和找0~n-1中缺失的元素的算法一样。

【在 A**u 的大作中提到】
: 我的神哪
: 你砸想到的
: 我看的下标都晕了
:
: ],

avatar
y*9
34
非常感谢。
avatar
A*u
35
大牛 0~n-1缺失算法,详细题目是什么, 我考古一下。
新手,不懂...

【在 c****p 的大作中提到】
: 和找0~n-1中缺失的元素的算法一样。
avatar
x*y
36
多谢啦
avatar
C*U
37
introduction to algorithm里面的练习题.

【在 A**u 的大作中提到】
: 大牛 0~n-1缺失算法,详细题目是什么, 我考古一下。
: 新手,不懂...

avatar
j*a
38
New EB-1A package was just re-submitted yesterday. if approved, I will
share my new package with you.I feel the new package is much better than the
NIW package.
Google scholar was used for citation.
In past years, I learn a lot in this board. Except for the application fee,
I did not spend any other money. I never consult with lawyers. Others told
me that the lawyer fee in my district is $ 5,000 for NIW. You also can DIY.
Below is my petition letter without my husband's personal information which
is 10 pages only.
--------------------------------
Nov. 22, 2010
Department of Homeland Security
U.S. Citizenship & Immigration Service
Nebraska Service Center
PO Box 87140 Lincoln, NE 68501-7140
RE: EB-2 NIW petition for permanent residency under the category of “
National Interest Waiver”
Petitioner: Dr. XXX
Beneficiary: Dr. XXX
File Number: XXX
Classification Sought: 203 (b) (2) (B)
Type of Petition: I-140
Dear Immigration Officer:
This is to file an I-140 - Immigration Petition for Alien Worker for myself
under the section: A member of the professions holding an advanced degree or
an alien of exceptional ability-National Interest Waiver. (Section. 203 (b)
(2)(B)). Enclosed are Form I-140, Form ETA-750B, application fee, and
supporting documents. Your help to my petition is greatly appreciated.
Qualification Summary
I have received the best academic and professional training in medicine and
public health both in China and in the United States (Exhibit B, page 11-16)
. In XXX, I received MD in XX Medical University, one of the best
universities in China. I gained extraordinary work experience in the XXX
from XXyear to XX year. I got my Master of Public Health (MPH) in XX in the
XXX,Beijing, which is the best institute in XXXX in P. R. China. After
working as an instructor in XXXX University (one of the best universities in
P. R. China) for three years, I studied at a top 5 college, the college of
Veterinary Medicine, the XXXX , United State, in XX and earned Ph. D in XX.
As the major university inXX, The XXX University is ranked among the top 20
public universities by U.S. News and World Report. My excellent education
background and exceptional work experience is the strong root for my
specific prior achievement in cancer research.
In my career of XX years of extensive experiences in the field of medicine
and public health (XX- XX) (Exhibit B, page 17-20), I have discovered
several breakthrough progresses in my field which have significant impacts
in breast cancer chemotherapy and chemoprevention. I have published 24 peer
reviewed journal papers and 22 conference abstracts in the biggest
international cancer research meeting in the world (Exhibit C, page 25-98).
A lot of experts from esteemed academic institutes all over the world
frequently cited my critical discoveries. Also, my significant research
achievements have been reported on Internet. Among thousands publication in
cancer research in the world, my important discovery was the only
publication selected and commented in 2009 in a cancer related media in my
research field (Exhibit D, page 105-107). From January to September 2010, I
have published 7 papers in peer reviewed journals (Exhibit C, page 25-31).
One of my publications was recommended by a global nonprofit organization (
Exhibit D, page 115-116). All this information proves that I made a specific
significant contribution in cancer research.
My specific prior achievements in cancer research include:
I have made a number of original discoveries and specific achievements in
cancer research. These achievements have produced national interest.
1. I was the first to discover the linkage among XXXin this field (Exhibit C
, page 33). This important discovery was reported by 3 websites (Exhibit D,
page 100-112, 114, 117).
2. I was the first to solve one of the toughest problems for the researchers
fighting cancers (Exhibit F, page 328-329). I successfully XXXX. It is of
significant impact in my field (Exhibit C, page 63).
3. I was the first to disclose the method and mechanisms XXXX(Exhibit C,
page 37).
4. I was the first person to discover that XXX (Exhibit C, page 29). This
indicates the practical application of bio-active food component through our
daily life to achieve the goal of preventing or treating breast cancer
which will definitely result in significant health benefits for both cancer
patients and healthy people.
5. I have authored 24 peer reviewed journal papers and 22 meeting abstracts
(Exhibit C, page 25-98). As can be seen in Exhibit C, in 2010, I have
published 7 journal papers (Exhibit C, page 25-31). I also have been invited
to present my research achievements in the American Association for Cancer
Research (AACR) annual meeting, the biggest international cancer research
meeting in the world, for 22 times.
6. My original scholar publications are of major significance and my impact
on other researchers is of importance. My publications have been cited for
more than 100 times by researchers from 16 countries. My significant
findings were reported in at least 5 websites for many times as important
news or discoveries and cited by 12 review articles or book chapters (
Exhibit D, page 100-105; page 114, 117; page 120, 123).
My extraordinary research and my significant impact in cancer research were
shown in the professional publications as well as public media. The website
XXX, XXX, and XXX (Exhibit D, page 123). All the information speaks to my
specific prior achievement.
My Talents Can Benefit the U.S
United States is a leader of cancer research in the world. I strongly
believe that my XXyears comprehensive experience and my talents in the
cancer research benefit this country. Also, my potential ability can be
fully developed and utilized for the U.S. Therefore, I am applying for
permanent residence in the United States, with my commitment that I will
contribute my knowledge and experience to this country’s prosperity.
In my research career of twenty years, I have engaged in pioneering work in
revealing new anti-cancer mechanisms. I have made many specific and
groundbreaking contributions in this field. My research in cancer field can
benefit the United States and my work is in U.S. national interest as
following:
1) Improve the U.S. Health Condition:
Breast cancer is the most common cancer among women and the second leading
cause of cancer related death in the US. In 2010, it is estimated that more
than 207,090 new breast cancer cases (near 30% of all cancers) will be
diagnosed and about 39,840 women (15% of all cancers) will die of the same
disease in 2010. One out of eight women will be diagnosed with breast cancer
in her lifetime. My extraordinary ability greatly helped breast cancer
prevention and chemotherapy. Moreover, my unique finding contributed to
cancer related problem, obesity, which is another very important public
health issue in the United States (Exhibit D, page 103-105). The supportive
documentation will prove that I well met the criteria of an alien applying
for a National Interest Waiver and my employment has enough national
interest to waive the otherwise required Labor Certification (PERM). I am
very sure I will continue work in the area and benefit to the whole
population
I am the first person who successfully solved one of the toughest problems
in cancer research: XXX (Exhibit C, page 63). Explain its importance. XXXXXX
.Therefore, what I discovered is very critical to help other researchers
understand the important mechanisms of transformation.
I am the first person who successfully XXX (Exhibit C, page 63-64). Due to
its rare success, my research achievement was highly regarded by the cancer
research field (Exhibit F, page 332). It represents a milestone both for the
cancer research field and the XXX industry. Having solved such a critical
problem in the cancer research field is a long way to reach to my peers.
2) Improve the U.S. Economy:
I am the first person who discovered a new link among XXX, XXX and XXXX in
this field (Exhibit C, page 33). This discovery is of significant importance
. (Explain here). In United States, XXX is a very serious health problem. I
creatively set up a novel evaluation system and discovered the relationship
of XXX and XXX. My article entitled “XXXXXXXX” was well commented (Exhibit
D, page 100-117). The importance of my publication has resulted in many
circulated media reports. For example, it was commented as only news in my
research field in 2009 in the website XXX(Exhibit D, page 105-106). It was
also shown in other website such as XXX(Exhibit D, page 117) and XXX (
Exhibit D, page 114, 115).
My important discovery is a milestone for cancer research (Exhibit F, page
328). My critical findings impelled researchers to pay more attention on
XXXX and XXX as well as American lifestyle (Exhibit D, page 109-112). To
change the American lifestyle improves human health with much less expense
in clinics and benefits the whole population as well as the U.S. government.
Therefore, my significant discovery was widely reported as important news
through the Internet (Exhibit D, page 100-117).
It is very important to note that (XXX website )is extremely selective. As
can be seen in the Exhibit D, page 106, only three papers in 2008 were
selected and commented among thousands research papers published in my
research field. More importantly, it only selected one of my published
papers in 2009 in my field all over the world. This fact clearly
demonstrated that the impact of my research discovery is the most important
in the world in cancer research. My important discovery is the first among
the 2,820 search results (Exhibit D, page 99). It was also reported in other
field (Exhibit D, page 101, 102). Such a prestigious about me is a clear
indication that I have far exceeded my peers in my field and any replacement
will affect national interest.
Ranked one of the 100 biggest websites among millions in the world with more
than 4 million visitors every day, the website XXX reported my important
discovery (Exhibit D, page 117). As said in the website, it only shows the
best news, videos and pictures (Exhibit D, page118, 119).
My research was also reported in the website XXX (Exhibit D, page 114). This
website provides the human-powered health information search and expert
guides. According the website, the XXX is to help people find the best and
most reliable resources. My important finding was not only reported (Exhibit
D, page 114), but also was ranked the Top resource shared on this topic
with a full score of 10 (Exhibit D, page 115). In addition, according to
this website, I was recommended by the organization of Men For A Cause (
Exhibit D, page 115).
I must point out that the “XXX” is the Top organization fighting cancers
in the U.S. among 5 National Breast Cancer Awareness Organizations (XXX,
Exhibit D, page 116). I am prestigous to be recommended by Men For A Cause.
It is very clear that my specific prior achievement is of significant
important in my field.
Moreover, my unique research ability made another critical finding also
widely reported on Internet (Exhibit D, page 120). My specific prior
achievement was commented both in the United States and Poland (XXX,XXX) (
Exhibit D, page 120-123). This evidence shows that I am very important in
this research field and my specific prior contributions were accepted
internationally.
3) Improve the Chemotherapy efficacy for cancer patients:
My original contribution to improve chemotherapy efficacy especially for
cancer patients is of definitely significance (Exhibit F, page 326, 327;
page 330, 331). (Explain more here). It has a very important impact for both
the cancer research field and the advancement of gene therapy for breast
cancer (Exhibit F, page 326, 327).
In addition, I was the first person who discovered a special XXXX(Exhibit C,
page 29). The importance of this unique finding is to protect the healthy
people from cancers with low cost agricultural commodities in the United
States (Exhibit F, page 327). It helps to reach the goal of cancer
prevention in general population through consumption of special XXXX, thus
this important finding benefits the whole population and next generation in
the United States (Exhibit F, page 327). In other words, my extraordinary
ability in cancer research benefits the whole population in the United
States, including the cancer patients and normal people. This groundbreaking
contribution is of significant impact in cancer research field.
All the evidence shows that my research is of significant importance
4) My prior achievement is of important impact in my field and my peers.
My original research works have been widely cited and heavily discussed by
leading scientists in top journals. I have authored 24 important research
articles in cancer research field and 22 AACR annual meeting abstracts, my
important publications have received sustained international acclaims. My
papers were cited 104 times by authors from 16 countries (Exhibit E, page
150, 151). According to the Times Higher Education’s 2010-2011 world
University Rankings– the global authority on higher education performance,
in my research field, the average citation rates of paper published for one
year is 0.75(Exhibit E, page 148), my most recent paper published in 2010
was already cited by independent authors for 2 times (Exhibit E, page 315-
320). It shows my research achievement is absolutely outstanding among my
peers.
My publications are so strong that Dr. H, Professor in the University of
Tennessee, highly praised my strong publication and my contributions to the
biomedical field in the United States (Exhibit F, page 332). For example, as
shown in Exhibit E, page 150-161, my published papers were at least cited
for 104 times, including 79 times by hundreds independent scholars from 16
countries including the United States (page 166), United Kingdom (page 167),
Turkey (page 171), Italy (page 172), P. R. China (page 173), Poland (page
177), Germany (page 177), Czech Republic (page 221), Canada (page 241), Hong
Kong (page 253), Japan (page 255), Taiwan (page 256), Iran (page 279),
Australia (page 282), Korea (page 288), France (page 290).
My discoveries were so important that they were widely reported on Internet.
Breaking news on Internet proved my significant impact in cancer research.
Based on my significant contributions in cancer research, I have been
widely reported on Internet as described below:
website Server location Supportive materials page
XXX United States 117
XXX United States 100-112
XXX United States 114-115
XXX United States 120
XXX Poland 123
Related Documents
Enclosed please find the attached materials. The recommendation letters and
correspondences from renowned professors prove that my staying in the U.S.
can be beneficial to the U.S. from various aspects, and I have exceptional
abilities. Some documents have confirmed the importance of my work and my
exceptional performance, and other documents provide proof and recognition
of my achievements.
a) Forms and Fees
1. Application fee.
2. Form ETA-750B two copies as required, and Form I-140
b) Certifications of Degree
3. Copy of MD from XXXX Medical College
4. Copy of MPH from Chinese XXXX
5. Copy of Ph.D from The XXXX University
c) Work experience
6. Copy of certification of work experience
d) Curriculum Vitae
7. My curriculum vitae: It lists my achievement, working experience, and
education background in detail.
e) Publications
8. Copies of the first page of my 24 peer reviewed journal publications
9. Meeting abstract: 22 AACR annual meeting abstracts
f) News Report
News report about my specific discoveries in cancer research
10. Foodforbreastcancer.org report
11. Organizedwisdom.com report
12. Evidence of Top National Breast Cancer Awareness Organization
13. Digg.com report
14. lib.bioinfo.pl report
g) Evidence of my research impact on other researchers
15. Total citations (google scholar search result)
16. Individual citations (google scholar search result)
17. Total citation analysis (tables)
Citations in detail (publication followed by citation list and first page
of citation)
18. -32. paper title
(please note that all my citation of 104 are from those papers, so I lists
the titles)
h) Six independent experts’ letters
33. Dr. M, DVSc, Ph. D, Professor at University of XXXX
34. Dr. D, Associate Professor at The University of XXXX
35. Dr. L, Professor at XXXX University, P. R. China
36. Dr. M, DVM, Ph. D, Professor and Associate Director for Basic Sciences
Comprehensive Cancer Center, The XXXXUniversity
37. Dr. H, Professor at the University ofXXXX
38. Dr. J, Ph. D, Professor at The XXXXUniversity
i) Supplement documents:
39. Passport information
40. Copy of Current Immigration status (work permission)
41. Copy of I-20 forms
42. Copy of AACR member card
43. English translation
Conclusion
Currently, I am working in the United States with an H-1B visa. My research
is fighting against breast cancer and XXXX, the very serious public health
problems in the United States. Cancer prevention and chemotherapy are
playing an ever-increasing role in the whole populations in the United
States. My past research work in breast cancer field has already produced
very important impact in my field. As is amply illustrated above, my current
and future work can improve the U. S. health condition, improve the U.S.
economy, and improve the chemotherapy efficacy for cancer patients.
Therefore, my permanent residence in the United States would greatly benefit
the United States’ whole population. As Dr. J pointed out: “It is
noteworthy that the research topics XXXXXX for healthy Americans is one of
the highest research priorities established by the National Institutes of
Health (NIH) for the 21st century” (Exhibit F, page 334), my significant
contribution has very important impact not only in my field but also in the
whole population.
Therefore, I am applying for permanent residence visa in United States, in
the petition category of a member of the professions holding an advanced
degree or an alien of exceptional ability-National Interest Waiver of the
Labor Certificate requirement.
To meet the regulation requirement of initial evidence, hereafter I have
enclosed:
 Copies of my MD, MPH, Ph. D degree;
 Published papers and meeting abstracts;
 Numerous evidence of recognition for achievements and
significant contributions
to cancer and obesity research fields;
 Numerous evidences showing that my research and work can benefit
the U. S. whole population in economy, health condition, cancer
chemotherapy, thus qualifying me with the National Interest Waiver of the
Labor Certificate requirement.
The submitted documents establish my qualification for the category that I
am applying for. I request that my permanent residence petition will be
granted as an alien holding an advanced degree and with exceptional ability.
If you have any question or need further information, please let me know at
your earliest convenience. I deeply appreciate your assistance to my
application.
Sincerely yours,
XXXXXX, MD, MPH, Ph. D
LIST of EXHIBIT
Exhibit
Page
Exhibit A Petition Letter .………………..………………………………1
Exhibit B Personal Information ………………………………………11-24
Education ……………………………………….…11
Work Experience ………………….………………17
Curriculum Vitae ………………………………………21
Exhibit C Strong Publications (First Page of Publications)................
......................25-98
First Page of Publications……………………………….…..........25
Lists of Meeting Publications……………………53
Meeting Publications…………………………………58
Exhibit D News Report about My Specific Discovery in Cancer Research …99-
123

Exhibit E Evidence of Citations of Published Papers……………124-161
Total Citations (Google Scholar Search Result)124
Individual Citations (Google Scholar Search Result)…...........129
Total Citation Analysis (Tables)………………………..…… ………148
Citations in Detail (Publication, Citation List, First Page of Citation).162
-323
Publication 1 …………………………………………………………162
Publication 2…………………………………………………………182
Publication 3………………………………………………………….200
Publication 4…………………………………………………………….215
Publication 5…………………………………………………………….231
Publication 6…………………………………………………………….246
Publication 7…………………………………………………………….259
Publication 8…………………………………………………………….272
Publication 9…………………………………………………………….283
Publication 10……………………………………………………………291
Publication 11……………………………………………………………298
Publication 12……………………………………………..….……305
Publication 13……………………………………………..…………310
Publication 14……………………………………………..……...315
Publication 15……………………………………………..……….320
Exhibit F Six Independent Experts’ Letters .……........324-334
Exhibit G Supplement Documents ………………...………………335-357
Passport Information………………………………………………....335-339
Copy of Work Permission…………………………………..………340-341
Copy of Current Immigration Status (work permission)……………342
Copy of AACR Member Card.....................................355
English Translation (for paper title)....................356-357
Goos luck every one.
God bless you.
avatar
m*q
39
我觉得这道题和那题不一样。
这道题就是grass以前说过的把value i放到位置i的变形。
你说的那个check cycle的方法有一个限制条件是
index 0~n-1, value 1~n-1,才能保证找到dup。
在这个题的条件下不满足。我刚刚在那道题的链接里更新了
http://www.mitbbs.com/mitbbs_bbsccc.php?board=JobHunting&file=M

【在 y*******g 的大作中提到】
: 扫一遍找到最大和最小 O(n)
: 如果最大最小只差不是 size-1, false
: 如果是size-1, 则有两种情况,有重复,和sequence,
: 这样就转化成了这道题目:
: http://www.mitbbs.com/article_t/JobHunting/31947559.html
: 用linkedlist找loop的方法, O(n)

avatar
a*8
40
谢谢分享!god bless you'
avatar
C*U
41
great!

],

【在 c****p 的大作中提到】
: 应该是这样,先把min和max分别放在A[0],A[n-1],
: 然后对于A[i],且A[i]-min != i,则将其和A[A[i]-min]换,如果A[A[i]-min]==A[i],
: 那就fail了(有重复的)。
: 换完之后再扫一遍,如果有A[i] != i+min的就fail,否则就成功。

avatar
uj
42
收藏!!!谢谢分享
avatar
A*u
43
是这个吗
数组A中包含n-1个[0,n-1]内的不同整数,n个数中只有一个数不在所给的数组中。设计
一个找到这个数的O(n)时间的算法
这个算法不是 用异或吗 和这个题目有关系?

【在 C***U 的大作中提到】
: introduction to algorithm里面的练习题.
avatar
C*l
44
如果是O(n) time O(n) space完全是trivial。
avatar
y*g
45
当然一样啊,
我已经check过了 max和min,当然要直接套的话需要把每个value都减去min-1

【在 m**q 的大作中提到】
: 我觉得这道题和那题不一样。
: 这道题就是grass以前说过的把value i放到位置i的变形。
: 你说的那个check cycle的方法有一个限制条件是
: index 0~n-1, value 1~n-1,才能保证找到dup。
: 在这个题的条件下不满足。我刚刚在那道题的链接里更新了
: http://www.mitbbs.com/mitbbs_bbsccc.php?board=JobHunting&file=M

avatar
m*q
46
那个题的限制条件是 n个数,n-1个取值,所以可以用
check cycle的方法。
这道题不满足上述条件,举个例子:
index 0 1 2 3 4
value 4 2 2 3 0
min是0,max是4,max-min=4
check cycle的方法只能找到 0,4两个元素
构成的环,无法发现2是dup

【在 y*******g 的大作中提到】
: 当然一样啊,
: 我已经check过了 max和min,当然要直接套的话需要把每个value都减去min-1

avatar
Z*4
47
如果最大跟最小的差小于size-1不一定是false啊。比如
11111123应该也算是sequence吧 因为原题是允许duplicates的。

【在 y*******g 的大作中提到】
: 扫一遍找到最大和最小 O(n)
: 如果最大最小只差不是 size-1, false
: 如果是size-1, 则有两种情况,有重复,和sequence,
: 这样就转化成了这道题目:
: http://www.mitbbs.com/article_t/JobHunting/31947559.html
: 用linkedlist找loop的方法, O(n)

avatar
Z*4
48
问题是题目中说允许重复的呀
比如
11123
应该返回true吧?但是按照你的算法返回的是false

],

【在 c****p 的大作中提到】
: 应该是这样,先把min和max分别放在A[0],A[n-1],
: 然后对于A[i],且A[i]-min != i,则将其和A[A[i]-min]换,如果A[A[i]-min]==A[i],
: 那就fail了(有重复的)。
: 换完之后再扫一遍,如果有A[i] != i+min的就fail,否则就成功。

avatar
c*p
49
99699

【在 Z**********4 的大作中提到】
: 问题是题目中说允许重复的呀
: 比如
: 11123
: 应该返回true吧?但是按照你的算法返回的是false
:
: ],

avatar
c*p
50
那把我的算法小改一下就可以了。

【在 Z**********4 的大作中提到】
: 问题是题目中说允许重复的呀
: 比如
: 11123
: 应该返回true吧?但是按照你的算法返回的是false
:
: ],

avatar
y*g
51
明白了

【在 m**q 的大作中提到】
: 那个题的限制条件是 n个数,n-1个取值,所以可以用
: check cycle的方法。
: 这道题不满足上述条件,举个例子:
: index 0 1 2 3 4
: value 4 2 2 3 0
: min是0,max是4,max-min=4
: check cycle的方法只能找到 0,4两个元素
: 构成的环,无法发现2是dup

avatar
k*n
52
find min and max, then swap to right position

sequence.
space

【在 B*******1 的大作中提到】
: Given an int array which might contain duplicates, find if it is a sequence.
: Eg. {45,50,47,46,49,48}
: is a sequence 46,47,48,49,50
: Sorting is an obvious solution. Can this be done in O(n) time and O(1) space

avatar
Y*B
53
wrong

],

【在 c****p 的大作中提到】
: 应该是这样,先把min和max分别放在A[0],A[n-1],
: 然后对于A[i],且A[i]-min != i,则将其和A[A[i]-min]换,如果A[A[i]-min]==A[i],
: 那就fail了(有重复的)。
: 换完之后再扫一遍,如果有A[i] != i+min的就fail,否则就成功。

avatar
b*g
54
刚才写了一堆,结果网页给没了,太郁闷了。好吧,我的思路如下:
扫一遍得到最小值,
扫一遍使得数组中每个元素减去最小值,
再扫一遍得到总和,sum,
判断sum=k(k-1)/2, where k =数组的长度,
if true, then a sequence,
else, not a sequence.
avatar
c*p
55
1 2 2 5 5 6 7

【在 b******g 的大作中提到】
: 刚才写了一堆,结果网页给没了,太郁闷了。好吧,我的思路如下:
: 扫一遍得到最小值,
: 扫一遍使得数组中每个元素减去最小值,
: 再扫一遍得到总和,sum,
: 判断sum=k(k-1)/2, where k =数组的长度,
: if true, then a sequence,
: else, not a sequence.

avatar
b*g
56
好吧,我没考虑到有多个repeated 的数字的时候,有这个巧合的情况。
1 2 2 5 5 6 7

【在 b******g 的大作中提到】
: 刚才写了一堆,结果网页给没了,太郁闷了。好吧,我的思路如下:
: 扫一遍得到最小值,
: 扫一遍使得数组中每个元素减去最小值,
: 再扫一遍得到总和,sum,
: 判断sum=k(k-1)/2, where k =数组的长度,
: if true, then a sequence,
: else, not a sequence.

avatar
u*r
57
只需要扫一遍,同时记录最小值,数组长度,summation,用等差数列求和公式验证之。
前提是出现重复的就不算sequance.

【在 b******g 的大作中提到】
: 刚才写了一堆,结果网页给没了,太郁闷了。好吧,我的思路如下:
: 扫一遍得到最小值,
: 扫一遍使得数组中每个元素减去最小值,
: 再扫一遍得到总和,sum,
: 判断sum=k(k-1)/2, where k =数组的长度,
: if true, then a sequence,
: else, not a sequence.

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