avatar
教训啊!!!# EB23 - 劳工卡
K*i
1
要求bug free
字符串只包含大小写字母和空格,空格是分隔符
以下返回0
NULL
"" // 长度为0的空串
" "
以下返回5
"This is an apple"
" This is an apple"
"This is an apple "
" This is an apple "
"apple"
" apple "
" apple"
"apple "
avatar
i*l
2
周日在网上交了申请,今天看到申请被cancel, 要求"Please visit a Social
Security Administration office in person to request a printout verifying
your Social Security Number and then mail that original document to us."
估计是因为我四月底才拿SSN的缘故吧,我不明白这个printout是什么样的?我已经有
了一张chase freedom,在branch申的,前几天申discover也秒过了。
有人有类似经历吗?多谢大家
avatar
o*i
3
因为ld是副申请人,找另外的律师办的材料,最后关头我的律师发现ld材料出错,现在
要寄回来重新填写签字。。日头啊,开始的时候快马加鞭赶出来的时间现在都成了白费
。。弄得我脑袋无比涨大,工作也魂不守舍
教训一:欲速则不达。如果当初我没催着ld加急,他和律师也不会在3小时之内填完表
,最后检查了还有错误没发现
教训二:能用同一个律师就用同一个,不能舍不得花钱
希望6月排期不要倒退!!!!!
[发表自未名空间手机版 - m.mitbbs.com]
avatar
c*p
4
有什么tricky的地方么。。。

【在 K*******i 的大作中提到】
: 要求bug free
: 字符串只包含大小写字母和空格,空格是分隔符
: 以下返回0
: NULL
: "" // 长度为0的空串
: " "
: 以下返回5
: "This is an apple"
: " This is an apple"
: "This is an apple "

avatar
s*g
5
直接去SS办公室开证明吧。。。你就拿这句话去问不就好了。。
你的SSN卡到了?按理说可以发SSN卡扫描件给银行的,你有SSN卡的话可以问问银行
avatar
f*7
6
bless !!!
avatar
i*e
7
刚写了一个,没测过。
分隔符有哪些?
bool isSpace(char c) {
return c == ' ' || c == '\t'; // maybe newline considered as a space too?
}
int lengthOfLastWord(const char *s) {
if (!s) return 0;
int len = 0;
bool inWord = false;
while (*s) {
if (!inWord && !isSpace(*s)) {
inWord = true;
len = 0;
} else if (inWord && isSpace(*s)) {
inWord = false;
}
if (inWord) len++;
s++;
}
return len;
}
avatar
s*g
8
估计你Amex pull的信用局和另外两个银行pull的不一样
你这么短的SSN,有些信用局可能还没记录
avatar
w*7
9
bless。我的律师倒是同一个人,不过为了赶时间我们一共也就花了大概6-7小时把所有
东西填完。
avatar
s*n
10
不错,这题看基本功

too?

【在 i**********e 的大作中提到】
: 刚写了一个,没测过。
: 分隔符有哪些?
: bool isSpace(char c) {
: return c == ' ' || c == '\t'; // maybe newline considered as a space too?
: }
: int lengthOfLastWord(const char *s) {
: if (!s) return 0;
: int len = 0;
: bool inWord = false;
: while (*s) {

avatar
g*t
11
今年4月的ssn 就能申请freedom了?
avatar
f*r
12
祝福
avatar
n*7
13
lz这个问题后来怎么搞定的?去社保局开证明了吗,有没有盖章?
avatar
f*e
14
祝福!
avatar
t*8
15
不影响,打电话更正
avatar
o*i
16
谢谢大家
avatar
c*i
17
bless
avatar
j*p
18
这个律师效率好高。赞一个
avatar
c*y
19
从决定降级到file一共花了两个星期
本来觉得那个律师是个bitch 来这里看看那些一弄两个月的 突然觉得 mean一点就mean
一点吧
avatar
n*2
20
bless
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。