S**C 发帖数: 2964 | 1 FSAGX outperform GDX over the life of GDX, it charges 0.91%, so my question
to you is where is the 2-3% hidden fees?
Regarding the first example, you changed topic. A realistic person would
expect to have 6-7% annualized real return over long period of time, and US
stock market provided just that and a B&H investor would likely achieve just
that. The time frame you are referring to had 17-18% nominal and are about
2x of annualized long term real return, which is a historical aberration (
and as ... 阅读全帖 |
|
y*******8 发帖数: 162 | 2 不好意思打扰大家,在投资潜水学习了一段时间,看帖子从大家的讨论中了解了一些投
资的方法,受益匪浅。
一般入门的投资书籍,都是说,投资的首要任务就是确定适合自己的asset allocation
, 也就是stock and bond的比例。
我的portofolio股票(都是投资stock mutual fund)的比例很高,所以想加入一些
bond mutual fund来达到自己设定的stock and bond比例。
当我在查找bond mutual fund的时候,发现了以下两个:
Vanguard Long-Term Investment-Grade Fund Investor Shares (VWESX)
Vanguard Long-Term Government Bond Index Fund Admiral Shares (VLGSX)
我看了两个MF的年至今和一年内的收益率都是超过10%。从MF成立至今的平均收益率也
有7%-8%。这个就让我有些疑惑。
1)这个收益率和stock mutual fund的收益率比根本不差,而且超过好些stock mutual
fund... 阅读全帖 |
|
y*******8 发帖数: 162 | 3 不好意思打扰大家,在投资潜水学习了一段时间,看帖子从大家的讨论中了解了一些投
资的方法,受益匪浅。
一般入门的投资书籍,都是说,投资的首要任务就是确定适合自己的asset allocation
, 也就是stock and bond的比例。
我的portofolio股票(都是投资stock mutual fund)的比例很高,所以想加入一些
bond mutual fund来达到自己设定的stock and bond比例。
当我在查找bond mutual fund的时候,发现了以下两个:
Vanguard Long-Term Investment-Grade Fund Investor Shares (VWESX)
Vanguard Long-Term Government Bond Index Fund Admiral Shares (VLGSX)
我看了两个MF的年至今和一年内的收益率都是超过10%。从MF成立至今的平均收益率也
有7%-8%。这个就让我有些疑惑。
1)这个收益率和stock mutual fund的收益率比根本不差,而且超过好些stock mutual
fund... 阅读全帖 |
|
r*****l 发帖数: 13 | 4 两周前second round onsite interview,两轮面试感觉良好,说是一周之内给消息,面
试后四天给HR写信问了一下,回信如下:
I’ll revert back to you positively of our offer before lunch tomorrow.
Currently, it’s pending final approval internally here.
I’ll give you a call tomorrow
其后也没等到他们的电话,四天后HR给我写信如下:
Sorry for not getting back to you last week.
An update across to you that currently we are preparing the offer in the
midst of getting approval. I will communicate our offer once I gotten the
green light. Time being, appreciate patience to f... 阅读全帖 |
|
|
K******g 发帖数: 1870 | 6 在你没有到达string尾端之前,你怎么in-place反转?如果你要到达,肯定至少要过一
遍。想都不用想,不可能的事情。
if |
|
K******g 发帖数: 1870 | 7 在你没有到达string尾端之前,你怎么in-place反转?如果你要到达,肯定至少要过一
遍。想都不用想,不可能的事情。
if |
|
s****u 发帖数: 1433 | 8 i think it is doable:
StringPointer=0;
while(String[StringPointer]!=null)
{
temp=String[StringPointer];
for(j=Stringpoint;j>0;j--) String[j]=string[j-1];
String[0]=temp;
StringPointer++;
} |
|
e********s 发帖数: 248 | 9 Looks like it is a O(n^2) algorithm. Worse than scan the string twice? |
|
|
s*****n 发帖数: 5488 | 11 送分题。
void reverseAString(char * str)
{
if (!str) return;
static char * strStart = str;
if (str)
reverseAString(str ++);
else
{
str--;
}
if (str > strStart)
{
swap(str, starStart);
str --;
strStart ++;
}
}
if |
|
e********s 发帖数: 248 | 12 Kind of get your idea. But your code will definitely not work.
BTW, even without bugs, this algorithm still scans the string twice similar
as the simple ones, just making it unnecessarily more complex. |
|
s****u 发帖数: 1433 | 13 true. but the requirement does not say better than 'scan twice'? |
|
j*****u 发帖数: 1133 | 14 DFS solution的full code,最后print出来的是正确的order因为经历了2次stack的
revert
void PrintDeepestPath(TreeNode root)
{
if (root != null)
{
var maxPath = new Stack();
DFS(root, new Stack(), maxPath);
while (maxPath.Count > 0)
Console.WriteLine(maxPath.Pop().Value);
}
}
void DFS(TreeNode node, Stack currentPath, Stack maxPath)
{
currentPath.Push(node);
if (node.Left == null && node.Right == null)
{
if (curre... 阅读全帖 |
|
j*****u 发帖数: 1133 | 15 呵呵,多谢share!
一个小问题是你最后print的LIS是逆序的,可以用stack revert一下 |
|
l***o 发帖数: 208 | 16
我从来就没有同意过。公司的sales, 跟HR很harsh,觉得自己最了不起,公司里的
devleoper都欠
他们似的。上个拜五,一下子就说要revert back the approval.不知道是不是真的他
们说了算。
可是现在我应该怎么跟他们讲呢, it might not be proper once the company
approved
and confirmed my last day, and later wanna to change.
如果他们就是说他们说了算,不放我走,那怎么办哪。即使我去找legal agencies, 也
需要时间吧。 |
|
s******d 发帖数: 61 | 17 How to revert a binary number in logn time?
Thanks!!! |
|
J*****1 发帖数: 68 | 18 我投的是pdf格式,将简历发到HR邮箱后回信如下:
Thank you for showing interest with our company, kindly revert back with an
updated resume along with some details requested in the same mail to further
process your candidature.
1. Updated word/PDF resume:
2. Your availability:
3. Expected annual Salary:
4. Your best number for phone interview:
5. Are you authorized to work in USA (yes/no):
这是什么意思呢?怎么回信呢? |
|
a***n 发帖数: 1993 | 19 为什么还要生日和ssn后4位?
Hope doing well, I come across your Resume in one of the Job Portal; I have
sent you this description to you to check your comfort ability with below
skills.
If you feel you are comfortable please fill the below details and revert
back I will get back to you ASAP.
Availability
How much comfortable with the requirement below
Updated resume
Willing to go for face to face interview
Willing to relocate
Expected rate per hour (1099, W2 (BEN), W2 (Straight), C2C)
VISA status
Last Four ... 阅读全帖 |
|
|
C***U 发帖数: 2406 | 21 void MorrisTraversal(struct tNode *root)
{
struct tNode *current,*pre;
if(root == NULL)
return;
current = root;
while(current != NULL)
{
if(current->left == NULL)
{
printf(" %d ", current->data);
current = current->right;
}
else
{
/* Find the inorder predecessor of current */
pre = current->left;
while(pre->right != NULL && pre->right != current)
pre = pre->right;
/* Make current as right child of its inorder predeces... 阅读全帖 |
|
b*2 发帖数: 94 | 22 LeetCode在Facebook上投票,
Should LeetCode be revert back to the old blog format instead of the new
format? Please vote.
=.=}}} |
|
g*******e 发帖数: 91 | 23 刚面完two sigma,估计这一轮拿到offer机会不高,给后面同学提供点参考。
本来猎头找我是BB一个什么news组。店面两个人:一个算法谈的还愉快,另一个比较变
态,全问我exception handling,我表示基本没做过,仍然锲而不舍,问我有什么思路
。俺只好乱讲。说一个礼拜给消息,实际杳无音讯,默据了结。
言归正传,猎头同时给我投了two sigma,我甚至不知道这个公司,来这里看了看才知
道居然是个牛公司。我的情况是骑驴找马,这头驴虽然破,但足以养家,所以下不了狠
心做题。自知不做题希望不大,不过也不在乎被多据一次。电面扯了一通我对金融的向
往,居然给了onsite。
猎头没告诉我去面什么职位,无的放矢,正好借口不做题。不过我自知白板写代码极差
,还是把c++的基本语法又看了一下。结果还真的有白板做题,仍然很不习惯,但也没
办法。以后我面试别人,绝对不搞这种变态做法。
第一个比较资深的phd,news team的。相谈甚欢,主要介绍自己,怎么解决各个project
问题,另外我没有金融背景,怎么应付这个领域等等。还有几个小题,怎样uniform
sampling数据。因... 阅读全帖 |
|
g******u 发帖数: 250 | 24 My status reverts back to initial review without my attorney doing anything
yet for the prior RFE. So weird! |
|
f********4 发帖数: 988 | 25 从3月中上旬到现在,面了一些小公司。。基本都挂了。。还有一个onsite。。不知道
哪年哪月能安排上。。ORZ
yelp
第一轮HR,问得全是网上能找到的题。。
一个华裔女问的,大部分都是简历。。问我database咋样,data mining,最后是
longest common prefix,一个小bug。。不过面试官没发现。。问题是跑leetcode的时
候也没发现。。真给跪了。三天后悲剧
bloomberg
电面就是invert integer。。前三十分钟都在问简历,面这个的时候刚开始刷题,大约
三月中下旬。。感觉刷题真有用。。。onsite遥遥无期的等待中
commvault
先做skill test。。大约30题,很全面。。各种知识点。。不过时间来得及google
这家从HM到面试官都是印度人。。我还去linkedin上看了下,也全部是印度人。。店面
问了一个小时概念题。。大约20道吧,从complier到multithread都有,当然也有c++基
础知识
zocdoc
面这个的时候还没开始刷题,被问了个cluster index和non cluster index,还... 阅读全帖 |
|
k*j 发帖数: 153 | 26 这道题可以用reverted index做。然后我感觉算这个CLOSE程度的值也是个关键。有很
多feature可以考虑。比如:# OF COMMON FRIENDS,最后联系时间,对方的收欢迎程度
。这么多FEATURE肯定是WEIGHTED。 |
|
S*********t 发帖数: 271 | 27 谢谢 澳洲也是阿三越来越多了 特别是计算机行业。
我最后说没有文件可以提供。他们回复这句,是啥意思?
As there are no documents we will revert to a Declaration of Fact you signed
upon completion of the consent forms to cover the time period.
好还是坏? |
|
S*********t 发帖数: 271 | 28 新公司请了专业的背景调查公司来CHECK BACKGROUND,
之前我在线填了份经历的表,还在线签字了。
现在他们找不到我其中2个月的TEMP JOB的经历,CHECK不了,我也没EVIDENCE 提供。
(因为是编的,就这2个月是编的)
我告诉了他们我也没资料可以证明,他们回信:
As there are no documents we will revert to a Declaration of Fact you signed
upon completion of the consent forms to cover the time period.
这个是好还是不好?谢谢 |
|
a*****2 发帖数: 423 | 29 其实有git 心里也没当多大的事 可他一边说明天我们把这个做好 一边第二天买鱼去
我真不知道该不该revert然后自己开始往下写 |
|
s*****r 发帖数: 43070 | 30 又黑俺成,前段时间有个帖子要考revert sll的 |
|
x****u 发帖数: 81 | 31 根本不能说是handle,这方面我不懂,比起其他面试很没自信。对面是两个人,期间扯
不清楚还用了collabedit边写边讲,具体对话如下。大家谨慎阅读,很有可能我说了很
多错的东西,他们也没有当场指出。如果懂行的朋友望指正一下。
对方:reverted index怎么partition,怎么scale
我:按term来hash,用consistent hashing来保证加机器之后数据不用全部reshuffle。
对方:consistent hashing怎么工作的
我:blahblah(写了个小例子解释)
对方:你讲讲加了个node之后发生了什么
我:加了机器后,新机器收到了查某个term的请求,就去老机器上拉数据过来再存着..
(被打断)
对方:client怎么会发请求到新机器
我:因为加了机器之后hash ring更新了,有一部分term的请求导到新机器了
对方:怎么更新的
我:可以用ZooKeeper存机器列表,新机器register到zookeeper后,各client那边的
listener就更新列表
对方:新加的机器怎么知道到哪里去找某个term的数据
我:顺着hash... 阅读全帖 |
|
b****y 发帖数: 257 | 32 以后去其他美国相关公司会有些小影响? Why? My ideal company is still FLAG but
they do not value my experience and only care if I can revert a linked list
in 10 mins. |
|
b******b 发帖数: 713 | 33 i will try the brute force way first:
1. create a hashmap, whose key is the sequence of the matrix, e.g. if the
array is: row0[1,2,3,4], row1[5,6,7,8], then key is [1,2,3,4,5,6,7,8], value
is the min step to revert it back to [1,2,3,4,5,6,7,8], put in [1,2,3,4,5,6
,7,8], 0 into the map.
2. write a recursive method,
int min(matrix)
{
if (map.contains(matrix.sequence)) return map.get(...);
opt1 = matrix.copy().swaprow();
int result = Integer.maxValue;;
if (!map.contains(op1))
{
... 阅读全帖 |
|
m*******s 发帖数: 9 | 34 用reverted index
from
because |
|
x********o 发帖数: 25 | 35 不需要存local copy,只存这个swap,backtrack要revert这个swap回到原来的样子。
前面也说了要两头都check,然后取minimum。
geeksforgeeks 这个算法是O(N)的吗?swap 后对后面的做完递归,就backtrack不了
,除非把swap前的vector保留一个local拷贝,那这样递归函数........ |
|
g*******e 发帖数: 140 | 36 可不可看做leetcode plus 1的变体呢?好像编程会简便一些:
int plus_one_35(int val) {
long long temp = 0;
int carry = 1;
if (val < 0) {
cout << 0;
return 0;
}
while(val > 0 || carry) {
int dig = val % 10;
if (dig + carry <= 3) {
dig = 3;
carry = 0;
} else if (dig + carry <= 5) {
dig = 5;
carry = 0;
} else {
dig = 3;
carry = 1;
}
temp *= 10;
temp += dig;
val /= 10;
}
// revert the d... 阅读全帖 |
|
|
|
|
t*****d 发帖数: 525 | 40 关键看你有没有 push to remote.
yes: you need git revert
no: just git rebase -i |
|
b**********5 发帖数: 7881 | 41 你已经push 到remote了, 还rebase什么? revert |
|
w**z 发帖数: 8232 | 42 你不会读文档吗?都说revert 了,还不会? |
|
i*****h 发帖数: 1534 | 43 那个request里有5个commit,其中一个是错的。之前用git reset --hard HEAD~1 在
local branch里把那个错的删了,然后git push -f, master上还有。
能问下现在该怎么操作?比如我要删除merge #6的一个commit, 去master上 git
revert commit_id?
commit |
|
d*******s 发帖数: 65 | 44 1. git rebase --abort // discard whatever you have done in rebase
2. git update remote
3. git rebase origin/master // assume you are on master branch
4. git log
5. git revert |
|
g*****g 发帖数: 34805 | 45 应该是soft reset吧,然后可以push -f。不过master上不推荐这么做。还是revert安
全。
git |
|
t*****d 发帖数: 525 | 46 I think you screwed your local client, 重新开个 client 来 revert. 吧
牛肉姐都会,你好好学吧,学完记得奔一个。
git |
|
w**z 发帖数: 8232 | 47 git revert
git push
git rest 不要乱用。
git |
|
w**z 发帖数: 8232 | 48 我一般都是revert, 反正commit 多几个无所谓。git 本来就随便commit.
master |
|
i*****h 发帖数: 1534 | 49 请教下,网上看到是这样说的:
git reset:用於做整段 commits 的還原
git rebase:假如想要抽掉某個 commit 又不想留下記錄
git revert:想要還原到某个commit 之後的狀態
我看一下好像都是能达到一样效果的,那一般情况下到底用什么比较好呢 |
|
z****e 发帖数: 54598 | 50
doesnt matter, but ppl prefer to use revert
it seems like a standard operation 4 all cvs(es) |
|