WK,赚一圈回来在线又创新高# PDA - 掌中宝
c*n
1 楼
昨天去面试了一个想起的金融公司。里面有一些有意思的问题:
1. Given two vairables a and b, do not use any temporary variable and
swap their value.
2. how to optimize the following code
double doit() {
double ret = 0
for(double i = 0; i <= 10; i = i + 2) {
double t = i / 2;
ret = ret + t;
}
return ret;
}
第一问题是和别人讨论的时候问的。 大脑一下没有转过弯了,没有答出来。最后人面
试人给了一个答
案。第二个笔试的问题。最后一个面试的人和我讨论我的答案。他的思路比较有意思。
还有其他问题例如
Given two integers, do not use any loop (for, while...) and do not
declar any variable, find the g
1. Given two vairables a and b, do not use any temporary variable and
swap their value.
2. how to optimize the following code
double doit() {
double ret = 0
for(double i = 0; i <= 10; i = i + 2) {
double t = i / 2;
ret = ret + t;
}
return ret;
}
第一问题是和别人讨论的时候问的。 大脑一下没有转过弯了,没有答出来。最后人面
试人给了一个答
案。第二个笔试的问题。最后一个面试的人和我讨论我的答案。他的思路比较有意思。
还有其他问题例如
Given two integers, do not use any loop (for, while...) and do not
declar any variable, find the g