o*******y 发帖数: 362 | 1 dp?
[在 lolhaha (长期骑驴,一直找马) 的大作中提到:]
:怎么解决输入太长,call stack overflow的问题呢?
:请校长指点
:........... |
|
r*****n 发帖数: 35 | 2 Scala code, not tested
object Parenthesis {
def main(args: Array[String]) {
val ret = constructTree("1+3*5")
println("start")
ret.foreach(println)
}
def wrap(c: Char): (Int, Int)=>Int = {
c match {
case '+' => (x, y) => x + y
case '-' => (x, y) => x - y
case '*' => (x, y) => x * y
}
}
def constructTree(input: String): Array[Int] = {
var split = false
var ret = (0 until input.length).flatMap{ idx =>
input(idx) match {
case '+' ... 阅读全帖 |
|
j********r 发帖数: 127 | 3 remove minimum number of left and right brackets and return the string with
valid bracket pairs. given (a))()), should return (a)(), or (a()); given )()
()), should return either ()() or (()); given ()((9()), should return either
()(9()) or ()((9)).
当时想用longest valid parentheses思路套,结果里头加了字符关系没理清楚,回来
想了想,一个stack就可以很容易解决了。 |
|
j********r 发帖数: 127 | 4 very interesting, is there an efficient way to remove the subsequences? it
seems to be exponential in time complexity.
for example, in this case "((((((())(((((())(())(())", you have to delete 9
left parentheses out of 17, which is C(9, 17) in time complexity, then check
every result to remove invalid and duplicated ones. |
|
b*******h 发帖数: 53 | 5 先扫一遍input,找到最后valid的结果有多少对parentheses pair.
然后再backtracing的做,如果invalid或者超过了pair number就是return,如果valid
选择留或者不留,扫input到最后放入结果里。 |
|
w****a 发帖数: 710 | 6 这两天收到打车app,租房app,某all in one hr平台的口头offer,package细节下周
能出来,这周末提前好好考虑下。
另外手里还有个fb的offer保底。
板上大牛们帮分析下,现在去哪家还能有点汤喝?
---
10/28 update
准备卖身去打车公司当司机了,要去的组我非常喜欢,感觉能学到很多东西。
其实租房网也很不错,我其实纠结了很久。他们家去了之后基本可以随便去喜欢的组,
做喜欢的事情,这点很给力。至于车间的装修多么的好,我就不用说了,大家随便搜搜
图片就可以看出来。
但是综合来看,最后还是选择去当司机。主要是以下几点原因:
1. 要去的组业务多,公司貌似很重视。我觉得很能锻炼人,这个对new grads来说比什
么都重要。
2. 要去的组同胞多,甚至基本都是同胞。我觉得在美国,真正最后能帮上忙称之为人
脉的,永远只能是同胞。
3. 未来的manager是标准的德艺双馨,我打听了很多人,都说口碑很好。我觉得找工作
跟找phd有些许相似的地方,公司本身未必那么的重要,去哪个组以及你的老板怎么样
,有时候能直接决定你的career path。
4. Packa... 阅读全帖 |
|
g*********n 发帖数: 282 | 7 面试了一些公司,职位是testing/software engineer,跟大家分享下面挂的经历。
tableau:
1. 聊工作经验半小时
2. 设计一个算法使得一个string list通过serialize和deserialize后返回同样的list
。没有答出来,回家上网看了是leetcode 271题,完全没有刷到。
public String serialize(List list)
public List deserialize(String input)
ea:
1. 聊工作经验10分钟
2. leetcode group anagrams,没有刷到这题,经过国人大哥提示才做出来。
==>没有后文了
prosper:
1. 解释java object oriented concepts: polymorphysim, inheritance,
encapsulation
2. java multithread how to start two threads
3. how to test a web page with asynchron... 阅读全帖 |
|
I******c 发帖数: 163 | 8 leetcode上类似的题目是
241. Different Ways to Add Parentheses
leetcode这道题是要求出所有可能的答案。我当时的解法就是recursive. 在不同的地
方把整数分成两半,然后递归求这两半整数所有可能的值,然后就汇总。
现在对于google这道题,我的理解是数组顺序也是固定的(从给定的例子),我们可以
使用类似的办法,找出表达式可能的结果,看给定的target在不在里面就可以。 |
|
|
d******g 发帖数: 558 | 10 终于还是悲剧了,被贷款公司坑了一笔,
现在不能按期close, seller给出了如下回信,
大家帮我看看,我怎么回复比较好?
First, I'm out a little over $700 counting a lost vacation day and my
homeowners insurance re-issue (it expires end of day on the 18th). I've read
through our various contracts, and this is my understanding (parentheses
refer to sections in the contract):
I am prepared to close on the sale tomorrow July 18, 2014. The buyer is
not prepared to close on that date. Therefore the buyer will be in default
(9.A) by the end of business ... 阅读全帖 |
|
w********r 发帖数: 1842 | 11 BabyCenter上的数字。我们的娃实在是睡不到13个小时。最多12个小时。
Age Nighttime Sleep Daytime Sleep * Total Sleep
1 month 8 8 (inconsistent) 16
3 months 10 5 (3) 15
6 months 11 3 1/4 (2) 14 1/4
9 months 11 3 (2) 14
12 months 11 1/4 2 1/2 (2) 13 3/4
18 months 11 1/4 2 1/4 (1) 13 1/2
2 years 11 2 (1) 13
3 years 10 1/2 1 1/2 (1) 12
*Note: number of naps in parentheses |
|
u*****a 发帖数: 6276 | 12 悲情哥号称已经修了十门 AP,目前高四还在修另外六门AP,还是没上藤校:
ID:Weightlisted
04-05-2015 at 3:24 pm
Decision: Rejected
Objective:
[*] SAT I (breakdown): 2400 (800 R, 800 M, 800 W)
[*] ACT (breakdown): N/A
[*] SAT II: 800 M2, 800 Physics, 800 Chemistry, 800 Biology (E)
[*] Unweighted GPA (out of 4.0): 3.96 UW
[*] Rank (percentile if rank is unavailable): Top 5% of class, 700+ Class
Size
[*] AP (place score in parentheses): Chemistry, Physics B, Physics C Mech,
Physics C Emag, US History, World History, Lang, Latin, Calc ... 阅读全帖 |
|
u*****a 发帖数: 6276 | 13 搞笑的是,另一个华裔男生,只修了五门 AP,其中还好几门得了三分(五分满分),
居然进了耶鲁!当然他高四也在修另五门 AP。
ID: YaleDad2019
04-07-2015 at 5:30 pm
Decision: Accepted
(Posted for my son)
Objective:
[*] SAT I (breakdown): 2300 (750 R, 800 M, 750 W)
[*] ACT (breakdown): 34C
[*] SAT II: 800 Math, 740 Chemistry
[*] Unweighted GPA (out of 4.0): 3.96 UW
[*] Rank (percentile if rank is unavailable): Top 3% of class, 300+ class
[*] AP (place score in parentheses): English Language (5), Calculus AB(5),
Chemistry (5), APUSH (3), AP World History (3)
... 阅读全帖 |
|
d*g 发帖数: 16592 | 14 相比前一个全才机器人来说,这个人显得比较有血有肉比较真实,感觉是一个正常的聪
明孩子。
一看就是总体上比较出色,能力上比较偏重理科,但是还是希望能涉猎一下历史政经方
面的科目扩大视野,当然事实证明并不太擅长,不过对于高中生AP得到3分,大学里也
相当于B了吧?
如果这样的学生申请好的学校的理工科,我觉得机会还是蛮大的,如果是申请人文,我
感觉机会可能偏小。
[*] Unweighted GPA (out of 4.0): 3.96 UW
[*] Rank (percentile if rank is unavailable): Top 3% of class, 300+ class
[*] AP (place score in parentheses): English Language (5), Calculus AB(5),
Chemistry (5), APUSH (3), AP World History (3)
[*] Senior Year Course Load: AP US Government, AP Macro Economics, AP
Calculus BC,... 阅读全帖 |
|
发帖数: 1 | 15 最近准备报税,发现如果1040 line 7填的是1042-S的gross income,第三年的J1好像可
以拿到EIC和Additional Child Tax Credit。
我咨询了学校的tax部门的人,确认1042-S上收入属于taxable wages。
如何看到IRS上说“How to report income on your tax return. In most cases,
you also will not need to report the income on your Form 1040 because the
income will be exempt from U.S. tax under the treaty. However, if the income
has been reported as taxable income on a Form W-2, Form 1042-S, Form 1099,
or other information return, you should report it on the appropriate line ... 阅读全帖 |
|
y***r 发帖数: 16594 | 16 Allergan, Daktronics, Devry, Hess, Juniper: U.S. Equity Movers
Share | Email | Print | A A A
By Rita Nazareth
June 2 (Bloomberg) -- Shares of the following companies had unusual moves in
U.S. trading. Stock symbols are in parentheses and prices are as of 4 p.m.
in New York.
Allergan Inc. (AGN US) climbed 4.6 percent to $46.23, the biggest gain since
May 4. The maker of Botox was raised to “overweight” by analysts at
Thomas Weisel Partners Group Inc.
American Express Co. (AXP US) fell the most in |
|
T*********s 发帖数: 17839 | 17 Alcoa, Electronic Arts, Multi-Fineline: U.S. Equity Preview
January 11, 2010, 06:18 PM EST
MORE FROM BUSINESSWEEK
Jan. 11 (Bloomberg) -- Shares of the following companies may have unusual
moves in U.S. trading tomorrow. Stock symbols are in parentheses, and prices
are as of 5:30 p.m. in New York.
Standard & Poor’s 500 Index futures expiring in March slipped 0.2 percent
to 1,140.10.
Alcoa Inc. (AA US) dropped 4.6 percent to $16.65. The largest U.S. aluminum
producer reported fourth-quarter profit |
|
H******i 发帖数: 4704 | 18 Wire: BLOOMBERG News (BN) Date: Mar 14 2010 11:34:28
Dr Pepper, Lennox, MGM, Sirius XM Radio: U.S. Equity Preview
By Rita Nazareth
March 14 (Bloomberg) -- Shares of the following companies
may have unusual moves in U.S. trading tomorrow. Stock symbols
are in parentheses.
Dr Pepper Snapple Group Inc. (DPS US): The third-largest
U.S. soda maker may rise as much as 25 percent as consumers seek
variety in refreshments, Barron’s reported.
Lennox International Inc. (LII US): The maker |
|
s********u 发帖数: 1054 | 19 Consolidated Summary Of November Retail-Sales Results
Published December 02, 2010
| Dow Jones Newswires
The following companies are among those that have reported November
retail sales:
COMPANY SYMBOL SAME-STORE S-S ESTIMATE Abercrombie & Fitch ANF 22.0% 6.8%
Aeropostale ARO (1.0%) 0.9% American Eagle AEO 0.0% 1.4% BJ's Wholesale BJ 3
.8% a. 2.6% Bon-Ton BONT 2.9% N/A Buckle BKE 7.9% 3.6% Cato Corp. CATO 5.0%
c. 2.0% Costco COST 6.0% a.b. 4.0% Destination Maternity DEST 5.1% N/A
Dillard's DDS... 阅读全帖 |
|
k**f 发帖数: 372 | 20 http://www.irs.gov/publications/p550/ch04.html#d0e14660
Capital Losses
If your capital losses are more than your capital gains, you can claim a
capital loss deduction. Report the deduction on line 13 of Form 1040,
enclosed in parentheses.
Limit on deduction.
Your allowable capital loss deduction, figured on Schedule D, is the lesser
of:
* $3,000 ($1,500 if you are married and file a separate return), or
* Your total net loss as shown on line 16 of Schedule D.
You can use your total net |
|
b*****i 发帖数: 770 | 21 1040里面如何claim $5000 treaty:
Enter the amount for which treaty benefits are claimed in parentheses on
Form 1040, line 21. Next to the amount write “Exempt income,” the name of
the treaty country, and the treaty article that provides the exemption. On
Form 1040, subtract this amount from your income to arrive at total income
on Form 1040, line 22. |
|
g**y 发帖数: 47 | 22
20
你说得是这个吗
in most cases, you also will not need to report the income on your Form 1040
because the income will be
exempt from U.S. tax under the treaty. However, if the income has been
reported as taxable income on a
Form W-2, Form 1042-S, Form 1099, or other information return, you should
report it on the appropriate
line of Form 1040 (for example, line 7 in the case of wages or salaries).
Enter the amount for which treaty
benefits are claimed in parentheses on Form 1040, line 21. Next to the |
|
g**y 发帖数: 47 | 23
20
你说得是这个吗
in most cases, you also will not need to report the income on your Form 1040
because the income will be
exempt from U.S. tax under the treaty. However, if the income has been
reported as taxable income on a
Form W-2, Form 1042-S, Form 1099, or other information return, you should
report it on the appropriate
line of Form 1040 (for example, line 7 in the case of wages or salaries).
Enter the amount for which treaty
benefits are claimed in parentheses on Form 1040, line 21. Next to the... 阅读全帖 |
|
G*******s 发帖数: 248 | 24 http://www.irs.gov/publications/p519/ch09.html#en_US_publink100
How to report income on your tax return.
In most cases, you also will not need to report the income on your Form
1040 because the income will be exempt from U.S. tax under the treaty.
However, if the income has been reported as taxable income on a Form W-
2, Form 1042-S, Form 1099, or other information return, you should
report it on the appropriate line of Form 1040 (for example, line 7 in
the case of wages, salaries, scholarship... 阅读全帖 |
|
t**i 发帖数: 688 | 25 If my memory serves me right, there was an instruction from IRS that
instructed how to fill 1040 (not the NR form) with tax treaty amount
properly reflected on Line 21 (use parentheses to indicate that this amount
needs to be subtracted rather than added). |
|
c*******n 发帖数: 718 | 26 问了payroll说三月份统一发
然后确实是有了1042S就不需要8833了
见page 58 pub519
Students, Apprentices, Trainees, Teachers, Professors, and Researchers Who
Became Resident Aliens
Generally, you must be a nonresident alien student, apprentice, trainee,
teacher, professor, or researcher in order to claim a tax treaty exemption
for remittances from abroad for study and maintenance in the United States,
for scholarship, fellowship, and research grants, and for wages or other
personal service compensation. Once you become a r... 阅读全帖 |
|
j****a 发帖数: 108 | 27 How to report income on your tax return.
In most cases, you also will not need to report the income on your Form 1040
because the income will be exempt from U.S. tax under the treaty. However,
if the income has been reported as taxable income on a Form W-2, Form 1042-S
, Form 1099, or other information return, you should report it on the
appropriate line of Form 1040 (for example, line 7 in the case of wages,
salaries, scholarships, or fellowships). Enter the amount for which treaty
benefits a... 阅读全帖 |
|
a******r 发帖数: 192 | 28 太感谢大榜的回复了!还有一点不明白请教:
我读了p519的这一段:
"In most cases, you also will not need to report the income on your Form
1040 because the income will be exempt from U.S. tax under the treaty.
However, if the income has been reported as taxable income on a Form W-
2, Form 1042-S, Form 1099, or other information return, you should
report it on the appropriate line of Form 1040 (for example, line 7 in
the case of wages, salaries, scholarships, or fellowships). Enter the
amount for which treaty benefits are claim... 阅读全帖 |
|
a******g 发帖数: 139 | 29 从publication 519里面pp.58看的:
How to report income on your tax return.
In most cases, you also will not need to report the income on your Form 1040
because the income will be exempt from U.S. tax under the treaty. However,
if the income has been reported as taxable income on a Form W-2, Form 1042-S
, Form 1099, or other information return, you
should report it on the appropriate line of Form 1040 (for example, line 7
in the case of wages, salaries, scholarships, or fellowships). Enter the
amount fo... 阅读全帖 |
|
a******g 发帖数: 139 | 30 从publication 519里面pp.58看的:
How to report income on your tax return.
In most cases, you also will not need to report the income on your Form 1040
because the income will be exempt from U.S. tax under the treaty. However,
if the income has been reported as taxable income on a Form W-2, Form 1042-S
, Form 1099, or other information return, you
should report it on the appropriate line of Form 1040 (for example, line 7
in the case of wages, salaries, scholarships, or fellowships). Enter the
amount fo... 阅读全帖 |
|
t*******n 发帖数: 430 | 31 Source: http://www.irs.gov/publications/p519/ch09.html#en_US_publink1000222739
Under:
Students, Apprentices, Trainees, Teachers, Professors, and Researchers Who
Became Resident Aliens
Look for:
How to report income on your tax return.
In most cases, you also will not need to report the income on your Form 1040
because the income will be exempt from U.S. tax under the treaty. However,
if the income has been reported as taxable income on a Form W-2, Form 1042-S
, Form 1099, or other information ... 阅读全帖 |
|
P****1 发帖数: 2670 | 32 http://www.irs.gov/publications/p519/ch09.html#en_US_2012_publi
Enter the amount for which treaty benefits are claimed in parentheses on
Form 1040, line 21. Next to the amount write “Exempt income,” the name of
the treaty country, and the treaty article that provides the exemption. On
Form 1040, subtract this amount from your income to arrive at total income
on Form 1040, line 22. |
|
D********r 发帖数: 135 | 33 However, if the income has been reported as taxable income on a Form W-2,
Form 1042-S, Form 1099, or other information return, you should report it on
the appropriate line of Form 1040 (for example, line 7 in the case of wages
or salaries). Enter the amount for which treaty benefits are claimed in
parentheses on Form 1040, line 21. Next to the amount write “Exempt income,
” the name of the treaty country, and the treaty article that provides the
exemption. On Form 1040, subtract this amount from... 阅读全帖 |
|
P****1 发帖数: 2670 | 34 5000写在1040表Line 21,数字填-5000,左边虚线上填Exempt Income, P.R.China,
Article 19(c),附上8833表格。
Pub 519的原话:
“Enter the amount for which treaty benefits are claimed in parentheses on
Form 1040, line 21. Next to the amount write “Exempt income,” the name of
the treaty country, and the treaty article that provides the exemption. On
Form 1040, subtract this amount from your income to arrive at total income
on Form 1040, line 22. ”
http://www.irs.gov/publications/p519/ch09.html#en_US_2012_publi |
|
c****8 发帖数: 113 | 35 下面是我看到的一个帖子,把这个说的很明白. 我刚才按照这个方法报了, 唯一的区别
就是今年standard deduction变成了6100. 大部分学生应该都和我一样收入比较简单吧
,那就尽情用吧!
另外还有个问题,帖子里说的用turbotax,但是今年我填的时候说要我付款升级才可以
claim treaty. 不知道有人知道解决方案吗?如果不行我就直接填表吧!
留美第六年起奖学金退税方案------同时享受居民和中美条约的福利
4月15号这天对于广大来外务工人员来说是个特殊的日子。每年的这天都是一个
deadline,众多“失足青年”必须做出一个重要的决定——去哪上技校学什么手艺——
因为这很大程度上决定了以后谋生的地方。是在东北部老殖民区的花街吆喝、卖报、算
账、搭模型?新英格兰区买药做药?还是去西边山沟沟里做码工?抑或是来中部大农村
的玉米地,麦田旁,大湖边,矿窑中搬砖……工种虽千差万别,往往却因一念之差。等
到自己开始出力气干活后,发现“万恶的资本家”克扣了自己很多的粮饷,而每年4月
15号又成了从他们手中拿回部分血汗钱的最后一天。
言归正传,对于通常用五年完成Ph.D.,入... 阅读全帖 |
|
c****8 发帖数: 113 | 36 下面是我看到的一个帖子,把这个说的很明白. 我刚才按照这个方法报了, 唯一的区别
就是今年standard deduction变成了6100. 大部分学生应该都和我一样收入比较简单吧
,那就尽情用吧!
另外还有个问题,帖子里说的用turbotax,但是今年我填的时候说要我付款升级才可以
claim treaty. 不知道有人知道解决方案吗?如果不行我就直接填表吧!
留美第六年起奖学金退税方案------同时享受居民和中美条约的福利
4月15号这天对于广大来外务工人员来说是个特殊的日子。每年的这天都是一个
deadline,众多“失足青年”必须做出一个重要的决定——去哪上技校学什么手艺——
因为这很大程度上决定了以后谋生的地方。是在东北部老殖民区的花街吆喝、卖报、算
账、搭模型?新英格兰区买药做药?还是去西边山沟沟里做码工?抑或是来中部大农村
的玉米地,麦田旁,大湖边,矿窑中搬砖……工种虽千差万别,往往却因一念之差。等
到自己开始出力气干活后,发现“万恶的资本家”克扣了自己很多的粮饷,而每年4月
15号又成了从他们手中拿回部分血汗钱的最后一天。
言归正传,对于通常用五年完成Ph.D.,入... 阅读全帖 |
|
P****1 发帖数: 2670 | 37 你的办法是1040NR/NREZ的填法,但在1040表上会影响EIC的结果。
Line 21再减是Pub519上明文写出的方法,最保险:
http://www.irs.gov/publications/p519/ch09.html#en_US_2013_publi
How to report income on your tax return. In most cases, you also will not
need to report the income on your Form 1040 because the income will be
exempt from U.S. tax under the treaty. However, if the income has been
reported as taxable income on a Form W-2, Form 1042-S, Form 1099, or other
information return, you should report it on the appropriate line of Form
1... 阅读全帖 |
|
P****1 发帖数: 2670 | 38 你的办法是1040NR/NREZ的填法,但在1040表上会影响EIC的结果。
Line 21再减是Pub519上明文写出的方法,最保险:
http://www.irs.gov/publications/p519/ch09.html#en_US_2013_publi
How to report income on your tax return. In most cases, you also will not
need to report the income on your Form 1040 because the income will be
exempt from U.S. tax under the treaty. However, if the income has been
reported as taxable income on a Form W-2, Form 1042-S, Form 1099, or other
information return, you should report it on the appropriate line of Form
1... 阅读全帖 |
|
P****1 发帖数: 2670 | 39 对,依据是Pub 519 Ch9
http://www.irs.gov/publications/p519/ch09.html#en_US_2013_publi
How to report income on your tax return. In most cases, you also will not
need to report the income on your Form 1040 because the income will be
exempt from U.S. tax under the treaty. However, if the income has been
reported as taxable income on a Form W-2, Form 1042-S, Form 1099, or other
information return, you should report it on the appropriate line of Form
1040 (for example, line 7 in the case of wages, salar... 阅读全帖 |
|
P****1 发帖数: 2670 | 40 免税收入被列入w2表中扣税的情况,1040表的填法,Pub 519原文如下:
http://www.irs.gov/publications/p519/ch09.html#en_US_2013_publi
In most cases, you also will not need to report the income on your Form 1040
because the income will be exempt from U.S. tax under the treaty. However,
if the income has been reported as taxable income on a Form W-2, Form 1042-S
, Form 1099, or other information return, you should report it on the
appropriate line of Form 1040 (for example, line 7 in the case of wages or
salaries). Enter the am... 阅读全帖 |
|
m*********r 发帖数: 2456 | 41 哎,其实这也是IRS有点说的不清楚的地方,
"However, if the income has been reported as taxable income on a Form W-2,
Form 1042-S, Form 1099, or other information return, you should report it on
the appropriate line of Form 1040 (for example, line 7 in the case of wages
, salaries, scholarships, or fellowships). Enter the amount for which treaty
benefits are claimed in parentheses on Form 1040, line 21. Next to the
amount write “Exempt income,” the name of the treaty country, and the
treaty article that provides the... 阅读全帖 |
|
P****1 发帖数: 2670 | 42 当作w2处理,1040 Line 21另外自己claim treaty。
http://www.irs.gov/publications/p519/ch09.html#en_US_2013_publi
In most cases, you also will not need to report the income on your Form 1040
because the income will be exempt from U.S. tax under the treaty. However,
if the income has been reported as taxable income on a Form W-2, Form 1042-S
, Form 1099, or other information return, you should report it on the
appropriate line of Form 1040 (for example, line 7 in the case of wages or
salaries). Enter the amou... 阅读全帖 |
|
P****1 发帖数: 2670 | 43 你的方法是对的,依据在Pub 519 Ch9上:
http://www.irs.gov/publications/p519/ch09.html#en_US_2013_publi
In most cases, you also will not need to report the income on your Form 1040
because the income will be exempt from U.S. tax under the treaty. However,
if the income has been reported as taxable income on a Form W-2, Form 1042-S
, Form 1099, or other information return, you should report it on the
appropriate line of Form 1040 (for example, line 7 in the case of wages or
salaries). Enter the amount for which... 阅读全帖 |
|
z****n 发帖数: 155 | 44 问题中我提到 W2+1042S+Resident,且1042S上没有withhold税,问怎么报,今天终于有
回信了,贴出来给大家参考一下:
As a United States (U.S) resident alien, report the gross amount of your
wages on Line 7 of Form 1040 (U.S. Individual Income Tax Return) and include
the amount of the fellowship reported on Form 1042-S (Foreign Person’s U.S
. Source Income Subject to Withholding). On Line 21 of Form 1040, you report
the amount of the fellowship that was exempt by treaty in parentheses. You
subtract the amount on Line 21 of Form 1040 that is ... 阅读全帖 |
|
发帖数: 1 | 45 谢谢回复。
之后又仔细查了IRS网站,5000不是taxable income,所以不用在1040上报。具体如下:
How to report income on your tax return. In most cases, you also will not
need to report the income on your Form 1040 because the income will be
exempt from U.S. tax under the treaty. However, if the income has been
reported as taxable income on a Form W-2, Form 1042-S, Form 1099, or other
information return, you should report it on the appropriate line of Form
1040 (for example, line 7 in the case of wages, salaries, scholarships, or
f... 阅读全帖 |
|
发帖数: 1 | 46 最近准备报税,发现如果1040 line 7填的是1042-S的gross income,第三年的J1好像可
以拿到EIC和Additional Child Tax Credit。
我咨询了学校的tax部门的人,确认1042-S上收入属于taxable wages。
如何看到IRS上说“How to report income on your tax return. In most cases,
you also will not need to report the income on your Form 1040 because the
income will be exempt from U.S. tax under the treaty. However, if the income
has been reported as taxable income on a Form W-2, Form 1042-S, Form 1099,
or other information return, you should report it on the appropriate lin... 阅读全帖 |
|
y***n 发帖数: 2806 | 47 COSTS The three columns in this category indicate a school’s tuition, the
percentage of students who receive some financial aid, and the average
amount of any financial aid package. Annual tuitions range from $35,906 at
Hyde Park Day—which serves children with learning disabilities with the
goal of transitioning them to mainstream schools—to nothing at all for
families at Good Shepherd Lutheran School in Downers Grove who are members
of the adjoining church. Many schools have a different tuition... 阅读全帖 |
|
N********n 发帖数: 13236 | 48 U. of I. reaches out to 600 freshmen from China
The hotel elevator doors opened and Yiwei Huang stepped out, ready for his
college orientation.
He held his mother's hand as he approached the registration table.
He pored over the rows of name tags, each belonging to a future classmate,
until he spotted his own, printed with both his familiar Chinese name and "
Allen" in parentheses — the name he will go by when he enrolls later this
month at the University of Illinois at Urbana-Champaign.
U. of I... 阅读全帖 |
|
g******4 发帖数: 6339 | 49 没有获得2015年的数据. 这里是2016数据
Colleges and universities enrolling the 2016 entering class of Merit Scholar
® awardees
233 Harvard University
147 Yale University
117 Princeton University
179 Stanford University
154 Massachusetts Institute of Technology
277* University of Chicago (185)
168* Northwestern University (125)
*An asterisk indicates that Merit Scholars whose scholarships are sponsored
by the institution are included; the number sponsored by the college is
shown in parentheses.
-----------... 阅读全帖 |
|
g******4 发帖数: 6339 | 50
有。
Colleges and universities enrolling the 2016 entering class of Merit Scholar
® awardees
233 Harvard University
147 Yale University
117 Princeton University
179 Stanford University
154 Massachusetts Institute of Technology
277* University of Chicago (185)
168* Northwestern University (125)
*An asterisk indicates that Merit Scholars whose scholarships are sponsored
by the institution are included; the number sponsored by the college is
shown in parentheses.
http://www.nationalmerit.org/s/... 阅读全帖 |
|