由买买提看人间百态

topics

全部话题 - 话题: scrambled
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
A******x
发帖数: 811
1
今年夏天组织的hiking中, 很多人问及关于登Mount Rainier,Adams, 以及周边的雪
山和攀岩。
这里是给那些我领过的,和我没有领过的, 对这些感兴趣的人。
10月15日开始,Seattle Mountaineering club 开始招收学生Basic Alpine Climbing,
和 Basic Alping Scramble。 具体看这里:
Basic Alpine Scramble
http://www.mountaineers.org/source/atrips/TripRegister.cfm?Even
Basic Alpine Climbing
http://www.mountaineers.org/source/atrips/TripRegister.cfm?Even
Seattle Mountaineering club 是 Seattle地区的一个非营利组织,完全靠志愿者运
行。
------------------------------------------------------------------------
下面是我个人对课程的... 阅读全帖
s*******f
发帖数: 1114
2
来自主题: JobHunting版 - google scramble string O(n) 解法
1. get index of s1 in s2, for each char in s1, mark position is s2.
here "tiger" in "itreg" is [1, 0, 4, 3, 2]
stops和posts is: 2 3 1 0 4
//For duplication, always pick nearer one first. I use "set" to deal with
duplication in code.
At first I use brute force here with O(n square). But when using
hash_map >, it goes to O(n), or queue hm[256]
.no need to use "set" for duplication.
2. rule for eat: you can eat neighbour if your high or low bound
can "touch" neighbour.
here [1,... 阅读全帖
r*********n
发帖数: 4553
3
来自主题: JobHunting版 - Leetcode Scramble String简单解法
Given a string s1, we may represent it as a binary tree by partitioning it
to two non-empty substrings recursively.
Below is one possible representation of s1 = "great":
great
/
gr eat
/ /
g r e at
/
a t
To scramble the string, we may choose any non-leaf node and swap its two
children.
For example, if we choose the node "gr" and swap its two children, it
produces a scrambled string "rgeat".
rgeat
/
rg eat
/ /
r g e at
... 阅读全帖
a**e
发帖数: 5094
4
来自主题: MedicalCareer版 - scramble,scramble,scramble
呵呵,揭榜的日子马上就来了
希望大家都心想事成
如果万一没中,knock,knock,后面的机会还是有的
现在回头看,match,prematch的,表现不一定有scramble好,临床水平,为人处世,PD也是
经常看走眼,不然也不会每届都有几个头疼的住院了.:)大家放下包袱,好好准备
scramble
昨天看我们这里一个在外科做observer的乌克兰mm,身穿貂皮大衣,小套装,长筒靴,拎着
prada 包包,翩然来到ICU,我们几个穿着旅游鞋和scrub的住院看得眼珠子都要掉下来了
.八婆了一下,原来mm今年申请没来得及,现在准备scramble prelim surgery.刚刚请
attending去downtown吃饭,要推荐信去了(看看人家下得功夫).不由得想起我去年帮别
人scramble的情景.
scramble的名额一般在开始的1-2个小时就fill了,所以时间要抓紧.事前调试好复印机,
准备好几个电话,信用卡的额度要搞清,把简历啊,推荐信准备好,要精华,不然内容太多,
fax的速度就慢了.到时候至少要请3-4个朋友帮忙,一个打电话,一个网申,一个发传真,
一个总指挥
s*********1
发帖数: 16
5
来自主题: MedicalCareer版 - How to prepare scramble?
我也在研究如何 scramble,大家互相讨论一下吧.
基本步骤这里有写:
http://www.usmletomd.com/scramble/2006/02/post-match-scramble-process.html
今年scramble 是16 号开始吧,那几天肯定让家里人请假帮忙打电话了.
我还不会网上发传真,需要学习一下. 还有就是要把所有材料放到一个文件里. 除了ERAS 网上可以打印的材料,我打算还放 scramble cover letter, copy of ECFMG Certificate & Green Card. 还要做的就是把面试过的地方, 所有名片上的电话都写一张纸上. 暂时想到这些,欢迎补充!
对了,我看了一下ECFMG 上写的,通过ERAS scramble 是有名额限制的.
"During the Scramble, you may apply to a maximum of 30 new programs and up
to 15 programs to which you applied during the regular ERAS sea
p*****2
发帖数: 21240
6
来自主题: JobHunting版 - scramble string 怎么用dp 阿?
dp[i][j][k] 代表了s1从i开始,s2从j开始,长度为k的两个substring是否为scramble
string。
有三种情况需要考虑:
1. 如果两个substring相等的话,则为true
2. 如果两个substring中间某一个点,左边的substrings为scramble string,
同时右边的substrings也为scramble string,则为true
3. 如果两个substring中间某一个点,s1左边的substring和s2右边的substring为
scramble
string, 同时s1右边substring和s2左边的substring也为scramble
string,则为true
w*******e
发帖数: 395
7
来自主题: JobHunting版 - 请教那个scramble string的题目
一直没有弄明白为什么网上许多代码是基于以下assumption的:
“如果s1和s2是scramble的话,那么必然存在一个在s1上的长度l1,将s1分成s11和s12
两段,同样有s21和s22。那么要么s11和s21是scramble的并且s12和s22是scramble的;
要么s11和s22是scramble的并且s12和s21是scramble的。”
有谁能解释一下吗?多谢了
w*******e
发帖数: 395
8
来自主题: JobHunting版 - 请教那个scramble string的题目
一直没有弄明白为什么网上许多代码是基于以下assumption的:
“如果s1和s2是scramble的话,那么必然存在一个在s1上的长度l1,将s1分成s11和s12
两段,同样有s21和s22。那么要么s11和s21是scramble的并且s12和s22是scramble的;
要么s11和s22是scramble的并且s12和s21是scramble的。”
有谁能解释一下吗?多谢了
s****t
发帖数: 746
9
http://www.mountaineers.org/seattle/scramble/Alpine%20Scramblin
如果你觉得技术登山太困难,难度太高,但hiking又太简单的话,
Alpine Scrambling Course可能正好适合你。
这个课程的优点是课程简单,次数也少一些,毕业更容易。
同时由于不需要technical gear,学费也只有basic climbing course的一半,
所以经济负担也小,将来如果想继续上basic climbing course的话,
买的gear也可以继续使用,只要补充其它technical gear就好。
另外club一年四季,每个周末都有相当数量的scrambling climb供大家注册,
不用担心空闲时间无法打发:)
报名已经开始,是first come first serve的,
其它有关问题,可以在Seattle branch Alpine Scrambling网站查询信息。
http://www.mountaineers.org/Seattle/Scramble/
b*********n
发帖数: 162
10
来自主题: MedicalCareer版 - 关于scramble的准备
So far the scramble peroid has been chaos. NRMP trys to have more managed
scramble begining in 2011 or 2012. see the link:
http://www.aamc.org/members/gsa/meetings/scramble.pdf
If somebody wants scramble this year, please expect the chaos.
One more question, during scramble, if I apply through ERAS, is that
sufficient? Do I have to call or e-mail or fax to the program in addition to
apply via ERAS? Thanks.
k********n
发帖数: 756
11
来自主题: MedicalCareer版 - post scramble
Scramble的PROTOCOL大家已经很熟悉了。把以前写的几点重新贴出来综合改了一下,希
望有用。
当时根本没有认真做功课不知道PRELIMINARY和CATEGORY的区别,最后只有一个
ADVANCED的给了位置,当时马上和PD联系请求帮忙。PD找到了一个地方同意我去面试,
然而CHIEF问的问题没一个回答得上来,被拒。当时伤心是伤心,想想也就算了,准备
来年卷土重来。但是听说POST-SCRAMBLE的机会也挺多,所以每两个星期群发一次邮件
,联系了2个特有名的地方的OB,开始准备考STEP3.正做着OB的时候,收到EMAIL有空缺
,没有被拒。
经验和教训:
1. 永远不要放弃。听说有人8月份,9月份进去了。以前的PROGRAM连1月份开始的都有。
2. OB/CLINICAL EXPERIENCE是王道。没有MATCH上马上行动找OB。马上
,马上找OB,否则POST-SCRAMBLE的机会没了,来年的机会也没了(4月到8月,时间紧张
得哏)。我把我做OB的ID给PD一看,PD说我绝对相信你。什么水平? 在门诊看过几次而已
3. 一定要准备。SCRAMBLE和POST-S... 阅读全帖
c***l
发帖数: 8
12
来自主题: JobHunting版 - scramble string
Just found that OJ test example for "scramble string" has some problem.
For example, "abcd", "acbd" returns true. But it seems impossible that "acbd
" is a scrambled string of "abcd" according to the definition for scrambled
string; see http://discuss.leetcode.com/questions/262/scramble-string
Did anyone work on the problem before?
L*****r
发帖数: 722
13
1。我申请住院第一年的今日,星期一,对我而言和平时并无区别,因为我知道不可能
match。用家乡话说,我的底儿太潮,潮湿的火柴怎么能在火柴日擦出亮儿呢?我100%
的知道不可能 match,因为我 的面试是 0%。那年的今日我在闷头准备第二天的
Scramble。我花两千块钱雇了公司,因为觉得公司实在没什么大用,所以就没有事先给
大家推荐。但是我觉得我那一段的经历,也许可能多少对您起点作用。
星期二 unfilled list 一出来,我就开始打电话。绝大多数都是忙音,不过居然也打
通了两至三个,但是无一例外,都是秘书接的,让我上 ERAS 申请 !骂靠都没用---实
在不靠谱啊!眼看着unfilled list一个一个地fill 掉,就如同希望一点点被蚕食,而
蚕茧也被一丝丝地抽净。到5点钟,终于电话里不再是忙音而全改留言了。我一气之下
,选了几个离家最近的unfilled program,开车踏上征程。
说最近,其实也都在6-7小时的车程之外。我真的很羡慕住在纽约的同学们,因为纽约
有那么多unfilled program啊!本打算当晚飞纽约的,但查了机票,天价啊!就把机会
让给了
b***u
发帖数: 746
14
刚才我scramble帖子里提到location也是这个意思。
与其待在家里,不如附近的program去闯闯,说不定就有机会。
n***8
发帖数: 634
15
真像电影里才会发生的事。
LZ是这样 SCRAMBLE 上的吗?
c******k
发帖数: 237
16
Thank you for sharing. I never know scramble could work like this until I
saw your story today.


%
L*****r
发帖数: 722
17

对不起,个人经验有可能引起误导。想想第一年我Scramble 失败,主要还是因为条件
太滥了。索性把潮底儿拿出来晾晾吧:当时本人毕业十多年,step 1/2/3 85/82/NA没
有很多临床经验,没有好推荐信。想想打进去的那几个电话,秘书还是问了我的大概情
况的,但是上面任何一条都很难让秘书动心,无怪乎她们公事公办的让我去 ERAS 递材
料;但凡我条件好点,说不定就被秘书直接转到 PD 那去了谈话了。能跟 PD 说上话,
那就有戏可唱了。
后来闯去见到PD 那次,如果我有更多的临床经验,很可能就进去了。因为当时PD对我
说的,和后来秘书在电话里说的,口径非常一致:我欠缺的就是临床经验。
说ERAS 不靠谱,是因为我听说program 的人会被电话、传真和 email淹没,根本没工
夫、没心思再去ERAS 下材料。
说我用的公司不可靠,是我后来接到那家公司的工作报告,说大约百名客户的所有资料
在20 分钟内全部传真给了所有的unfilled program。拜托!每个人的资料好几十页,
百名客户就是好几千页,何况还有别的公司和大量的散户呢?program 的传真机得是什
么级别的,
L*****r
发帖数: 722
18

拜托,不是编故事,是真事儿。我把题目改了。不信的话,我让 ECFMG 直接给你发我
的成绩单。;-)
其实在match以后的几个月里,也会有一些位置空出来,譬如有些外国拿 H1来的人,结
果签证有问题过不来了。我知道的就有两个中国人通过FindAResident 网页找到了
prelim的位置。我见习的一个墨西哥来的家庭医生,当初就是在Scramble 后几个月,
打了无数电话碰到了一个空位,就这么进去的。
可惜我那年没有这样的运气,确切说是没有那份耐心,甚至没有天天去查
FindAResident 网页。我比较幸运的是那年一直都有机会做见习,基本没有空下来。我
找到的见习,大部分离家很远,最远的一处,单程要开两天的车,因为在那边的一个月
要天天用车,如果飞过去再租车的话,一月要一千多,想想没舍得,还是开自己的车过
去了,还省了机票钱。所幸的是路上拜访了一位久违的好友,而且看了几处心仪已久的
名胜,还有,一路听了不知多少 Audiobook。
那一年,我的车加了将近三万的里程。这令我比较厚颜无耻的想起了长征,同样是一年
,同样是将近三万的里程(我还是英里哪!),但我跑的可是美式装备的
s**j
发帖数: 196
19
非常仰慕你的精神和文才!太值得我学习了。很惭愧的说,我周日还在想,如果match不上,也就懒得试试
scramble了,觉得实在是太麻烦了,希望也比较小。现在想想,只要有一点点希望,也应该付出全部的努力,这
才是成功的态度!
a*****2
发帖数: 200
20
so touching, I was totally tearful when the story about "scrambled eggs"
came out...
e*****a
发帖数: 1334
21
来自主题: MedicalCareer版 - LORs for scramble?
You may use ERAS for the scramble, see
http://www.ecfmg.org/eras
"The Scramble starts on Tuesday, March 15, 2011 at 12:00 noon, Eastern Time
in the United States, when the list of programs with unfilled positions is
posted on the NRMP website, and ends on Thursday, March 17, 2011 at 12:00
noon, Eastern Time in the United States. Once the list has been posted, you
may apply to any program with an unfilled position. You will not have access
to the list of unfilled programs if you did not register ... 阅读全帖
e*****a
发帖数: 1334
22
来自主题: MedicalCareer版 - qs about scramble
Scramble for this year is very tough due to several reasons:
- Record low number of first-year (prelim and categorical) positions
available for scramble: about 1000. (2001: 2288, 2010: 1060)
- Record high number of applicants participated in scramble: estimated about
13,000 – 15,000;
- The computer problem caused many people (many AMGs included) couldn't get
the unfilled position list on time.
What AMGs did in my school:
Students sent out applications through ERAS. Some PDs and Deans placed cal... 阅读全帖
w****x
发帖数: 2483
23
来自主题: JobHunting版 - 做了一下scramble string
/*
scramble string,judge if one string can be scrambled to another one
tiger
/ \
ti ger
/ \ / \
t i g er
/ \
e r
rotation is allowded
itreg
/ \
it reg
/ \ / \
t i g re
/ \
e r
then tiger can be changed to itreg
*/
bool _inner_can_scramble(const char* szStr1, const char* szStr2, int n);
bool CanScramble(const char* szStr1, const char* szStr2)
{
assert(szStr1 && szStr2);
int nLen1 = strlen(szStr1);
int nLen2 = strlen(szStr2);
if (nLen1 !... 阅读全帖
w****x
发帖数: 2483
24
来自主题: JobHunting版 - google scramble string O(n) 解法
贴一个递归和DP的:
/*
scramble string,judge if one string can be scrambled to another one
tiger
/ \
ti ger
/ \ / \
t i g er
/ \
e r
rotation is allowded
itreg
/ \
it reg
/ \ / \
t i g re
/ \
e r
then tiger can be changed to itreg
*/
bool _inner_can_scramble(const char* szStr1, const char* szStr2, int n);
bool CanScramble(const char* szStr1, const char* szStr2)
{
assert(szStr1 && szStr2);
int nLen1 = strlen(szStr1);
int nLen2 = strlen(szStr2);
... 阅读全帖
w****x
发帖数: 2483
25
来自主题: JobHunting版 - LeetCode Scramble String 疑问
/*
scramble string,judge if one string can be scrambled to another one
tiger
/ \
ti ger
/ \ / \
t i g er
/ \
e r
rotation is allowded
itreg
/ \
it reg
/ \ / \
t i g re
/ \
e r
then tiger can be changed to itreg
*/
bool _inner_can_scramble(const char* szStr1, const char* szStr2, int n);
bool CanScramble(const char* szStr1, const char* szStr2)
{
assert(szStr1 && szStr2);
int nLen1 = strlen(szStr1);
int nLen2 = strlen(szStr2);
if (nLen1 !... 阅读全帖
H****s
发帖数: 247
26
来自主题: JobHunting版 - string scramble 的时间复杂度
居然没人回答,估计是我的问题太弱了,自己顶,把题目也贴在这里
Given a string s1, we may represent it as a binary tree by partitioning it
to two non-empty substrings recursively.
Below is one possible representation of s1 = "great":
great
/ \
gr eat
/ \ / \
g r e at
/ \
a t
To scramble the string, we may choose any non-leaf node and swap its two
children.
For example, if we choose the node "gr" and swap its two children, it
produces a scrambled string "rgeat".
rgeat
/ \
... 阅读全帖
t*********m
发帖数: 360
27
1.落榜不表明你不优秀;
2.争分夺秒准备Scramble,拼死一搏;
3.把情绪留到Scramble结束后;
静候你们的好消息!
请大家多给Scramble 出主意!
l********z
发帖数: 810
28
来自主题: MedicalCareer版 - Is scramble for ppl who need H1b?
借地问一下,Scramble 也需要三份推荐信吗?还有scramble是不是可以选择不同的专
科啊?比如可以同时scramble内科,儿科,家庭科?
b****e
发帖数: 45
29
来自主题: JobHunting版 - google scramble string O(n) 解法
字符集相同并不一定保证scramble可行,比如以下两个字符串:
"abcde"
"dbeac"
似乎没有办法通过scramble得到。
j********e
发帖数: 1192
30
来自主题: JobHunting版 - google scramble string O(n) 解法
我没有说字符集相同就能scramble,字符集相同是必要条件,而不充分。
我的做法是,先找到一个位置i在s1,j在s2使得分割后的4个字符串两两
有相同的字符集(i=j 或者i=N-j)。然后接着对这2对字符串继续做同样
的事情连寻找分割位置。这样递归下去,如果有某对字符串无法找到分割
位置,则表示失败。否则,最后分隔最小的字符串只有一个字符。就可以
判断scramble成功。
问题是,如果有多个分割位置,是否任选一个都可以?如果必须测试每个可能的分割位置,那复杂度就不好说了。
下面是我的简单实现代码,通过了leetcode的online judge (包括judge large)。这段代码中会处理所有可能的分割位置。如果只选第一个可能的分割位置,有一个测试失败了。
#include
#include
#include
#include
using namespace std;
#define BITMAP_LEN 256
bool compare_char_set(const char *s1, con... 阅读全帖
r*******e
发帖数: 971
31
来自主题: JobHunting版 - Leetcode oj 的"scramble string"
不是不是,那题特别恶心。
比如scramble 有一个anagram 是 sramblec 这个就不是Scramble String
A*f
发帖数: 3067
32
来自主题: Golf版 - palo alto 9 hole family scramble
palo alto open house on June 13th
it said there is a 9 hole family scramble. first 32 players can play
anyone knows what it is family scramble?
ET
发帖数: 10701
33
来自主题: Golf版 - palo alto 9 hole family scramble
就是你全家老少组成个team, 打scramble赛制。
应该有详细说多少算一个队吧,husband & wife? 还是只要有点关系的?
scramble是2人2球,best ball..
c*******r
发帖数: 13580
34
来自主题: Outdoors版 - 周末的scramble
周末跟club的两个人一块儿去scramble了rainier np里的三个小山头:fay, pleasant,
and hessong。没有trail,有一些scree,有一些雪,大部分class 3的scramble吧。
早上9点开到trail head,SR165季节性封路,最后6迈没法开车,骑自行车approach的
。一路大约5%的上坡,石子路,骑我的fixed gear commute bike,还挺累的。10点从
ranger station上路,12:30登顶fay, 2:30登顶pleasant,3:50登顶hessong,从
hessong的东南坡下到spray park,沿着maintained trail 6:00pm回到ranger station
,骑车回到停车的地方。以后要是经常需要bike approach的话可以去walmart买辆烂山
地车。
天气出奇的好。早上有点雾,很快我们就爬到云层上面了,一直很晴朗,rainier的西
北坡整个呈现在眼前,liberty ridge, liberty cap, columbia crest, observati
m*****n
发帖数: 760
35
microRNA overexpression,需要用scramble的序列来做negative control,
请问用什么program能生成scramble的序列?
e*****a
发帖数: 1334
36
来自主题: MedicalCareer版 - 关于scramble的准备
You may contact any programs during scramble period (Can't do that earlier).
Check NRMP's scramble service first. You may submit the same application
materials through NRMP.
b*********n
发帖数: 162
37
来自主题: MedicalCareer版 - 关于scramble的准备
Eric, 我听说scramble的时候,medical school dean's office 得到unfilled
program list要比independent applicants早12小时左右,这也就是IMGs scramble基
本上没戏的主要原因。是这样吗?如何才能早点搞到这个list呢?
s*******d
发帖数: 1079
38
来自主题: MedicalCareer版 - How to prepare scramble?
我去年帮一位朋友SCRAMBLE的几点体会(我们总共有4位朋友帮一个人):
1。8-9AM,所有帮忙的人都到齐,主人分配任务,有负责打印SCRAMBLE LIST,有
专司电话联系的(要事前想好说什么,怎样说),有专管ONLINE APPLY,有负责联系内
线的。
2。所有认识的PGY-1及以上的DOCTOR的电话LIST要提前准备好。
3。PACKAGE要提前打印出来人手一份,解释清楚。
4。以上是9AM前的准备工作,我们已经做的很好了,但9AM 一到,大家还是慌了,
主人自己也还是有些手忙脚乱。
5。我自己的体会是所有的PG都只接受ERAS,NO FAX,NO EMAIL,SOME EVEN NO PHONE
CALL,ONLY ANSWER MACHINE。SO DO NOT TRUST ANY COMMERCIAL ADS。
6。密切关注MITBBS,有些同学会把INSIDE NEWS 帖出来,时间最重要。
7。密切关注LOCAL的PG,必要时主人可以直接开车过去。MOST OF SUCH PG REQUEST
APPIONTMENT ONLY,BUT YOU NEVER KN
e*****a
发帖数: 1334
39
来自主题: MedicalCareer版 - How to prepare scramble?
This should be the data before scramble. Almost all unfilled positions were
taken during scramble.
h******l
发帖数: 238
40
来自主题: MedicalCareer版 - How to prepare scramble?
病理专业总共也没几个地方UNFILLED,而且一大半是挑剔特别厉害的大学,我感觉你们
两个今年应该问题不大吧,我记得 ERAS 免费提供 30 个单位SCRAMBLE,对病理来说足
够用了。如果能打进去电话,已经成功一半了。当然,你如果考虑 SCRAMBLE 其他专业
那另说,那样的话你的 PS, 推荐信什么的恐怕都得重来。
AAMC 这个网站可能对 IMG 更有用些,我认识有人通过这个网站找到 RESIDENCY 或者
PRE-RESIDENCY FELLOWSHIP 的。
https://services.aamc.org/findaresident/
o***g
发帖数: 29
41
来自主题: MedicalCareer版 - For Profit Scramble Services
Sharing this email from NRMP. It is about the profit scramble services.
Overall, they are not favorable by NRMP as well as the unfilled programs. So
be cautious and think in advance about the outcome of these services. Good
luck, everyone going for the match and the scramble!
TO: Applicants in the 2010 Main Residency Match
The NRMP has received numerous phone calls from applicants asking about for-
profit services that claim to send unmatched applicants' applications to
unfilled programs during
b***u
发帖数: 746
42
来自主题: MedicalCareer版 - scramble suggestions
Hi,
I totally understand you, who received this damn email "We're sorry, you did
not match to any position", because I received it last year as well. But
please do not lable yourself as "Not matched", you are just "not matched YET
".
There are still hope and chances. Forget about depression, not you shouldn't
, but you shall have no time to.
Aim to the scramble first. Although scramble is notoriously tough, if well
prepared, you might grab some chance. Here's my suggestions from my last
year's e
L*****r
发帖数: 722
43
来自主题: MedicalCareer版 - scramble suggestions

did
YET
't
这个scramble 大全真的很全面了。我想提醒的是一个心态:虽然 scramble 成功率不
高,但是失败了并没多大损失,充其量也就是一两天的无用功和极少量的电话、传真费
(绝大部分都是忙音,不收费的!);成功了,得到的可就是整个世界!所以,何妨一
试呢!
h*********3
发帖数: 14
44
来自主题: MedicalCareer版 - Question for scramble, please help!!!
I applied for pathology program this year, but did not match. Now I am
preparing for scramble. Can I try to scramble for other specialities, e.g.
FM & IM, besides pathology? If yes, do I need to prepare corresponding LORs
and PS? Thanks!!!
k********n
发帖数: 756
45
来自主题: MedicalCareer版 - post-scramble
我的经验可能不是很有用。
当时申请的神内,不知道PRE和CATE的区别,也没毕业,没有CS成绩/STEP3,拿着EAD到
处唬人,最后只有一个ADVANCED的给了位置(ROL中唯一一个ADVANCED),当时马上和
PD联系请求帮忙。PD找到了一个地方同意我去面试,然而CHIEF问的问题没一个回答得
上来,自然被拒。
当时伤心是伤心,想想也就算了,准备来年卷土重来。但是听说POST-SCRAMBLE的机会
也挺多,所以每两个星期群发一次邮件,联系了2个地方的OB,开始准备考STEP3.正做
着OB的时候,收到EMAIL有空缺,没有被拒。
经验和教训:
1. 永远不要放弃。听说有人8月份,9月份进去了。我们这连1月份开始的都有。
2. OB是王道。申请失败没有临床经验占70%的因素,没有MATCH上马上行动找OB。马上
,马上找OB,否则POST-SCRAMBLE的机会没了,来年的机会也没了(4月到8月,时间紧张
得哏)。我把我做OB的ID给PD一看,PD任何临床问题都没有问,说了大概是我绝对相信
你的水平。什么水平? lopressor或者ATIVAN听都没听过。
3. 一定要准备。
x****9
发帖数: 2668
46
来自主题: MedicalCareer版 - Is scramble for ppl who need H1b?
100% Correct.
Just 45 programs your can apply for Scramble in ERAS.
BUT you can call any programs that on Scramble List.
That is my daughter.
s********o
发帖数: 3319
47
来自主题: MedicalCareer版 - ##### Scramble list #####
暂时没有match上的同学或者他们的朋友请不要放弃。如果愿意的话可以把你们的
Credentials/申请专业贴在这里,看看版上有没有谁能愿意帮忙scramble,特别是提供内部的消息和关系。
大家不要轻易放弃,虽然机会很小,但是去年就听说咱们有人scramble成功了。
祝好运!
(No general comments in this post, please. For those people who have internal connections or information, please contact the person directly if you would provide any help.)
M*******7
发帖数: 21
48
Did anybody know if this match season's scramble (SOAP) has any limitation
for the numbers of programs we applied for in the scramble time? Are they
all free? Thx!
t*********n
发帖数: 240
49
来自主题: MedicalCareer版 - 能科普一下scramble吗?
从今年起, 将实行SOAP, 与以前的Scramble有很大不同. 我觉得这个SOAP系统比较有
序, 操作也规范, 全部是网上操作. 不过, 与Scramble可能相同的是, 因为SOAP是
通过系列Rounds来运行, 有严格的时效性, 需要一个快速反应, 同时也是一个相对
Stressful的过程.
http://www.mitbbs.com/article/MedicalCareer/31453273_3.html
这个链接基本回答了你上面的问题.
祝好运!
i*****s
发帖数: 430
50
来自主题: MedicalCareer版 - scramble
scramble能上的几率大吗,老公没申请上,他分数还不错,毕业15+年,不知道能
scramble 上吗,大家有什么技巧或者建议呢?
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)