有包子,那里有查附近retail space的大概租金?# Living
j*7
1 楼
一共面了四个人,都是SDET
1.面试官:印度人lead SDET
Given a random matrix of characters, find all the locations of the following
list of words:cat,dog,ate. We have to look in 8 directions.
e g o d
a c a t
e a t e
k t q z
2. 面试官:姓陈,Lead SDET,美籍华裔?
第二轮是lunch interview.简单做自我介绍。介绍SDET这个position.然后吃完饭回到
办公室继续面试。
given a function,explain what it does.
int my_fun(int x ,int y)
{
return x + (int)((y-x)*rand());//rand() returns a real number between 0
and 1, inclusively.
}
我当时回答my_fun应该return x和y之间的一个integer.
然后要test function.
Follow up: 怎么用程序来证明my_fun一定return random integer?
Follow up2: How to detect a pattern in the distribution of the random
integers? Ex. 1,2,3,1,2,3,1,2,3
3.面试官:白人SDET,没问是不是lead
Given an equation (Ex."2*5+1+3*6" or "3/6-1*4+1") as a string,calculate the
equation. So "2*5+1" becomes 10+1=11.我用了divide and conquer.
把“2*5+1”变成 "2*5" 和 “1”。分别计算两个sub-problem.。
4.面试官:白人 lead SDET
reverse a linked list.我用了recursion.面试官不太满意。
1.面试官:印度人lead SDET
Given a random matrix of characters, find all the locations of the following
list of words:cat,dog,ate. We have to look in 8 directions.
e g o d
a c a t
e a t e
k t q z
2. 面试官:姓陈,Lead SDET,美籍华裔?
第二轮是lunch interview.简单做自我介绍。介绍SDET这个position.然后吃完饭回到
办公室继续面试。
given a function,explain what it does.
int my_fun(int x ,int y)
{
return x + (int)((y-x)*rand());//rand() returns a real number between 0
and 1, inclusively.
}
我当时回答my_fun应该return x和y之间的一个integer.
然后要test function.
Follow up: 怎么用程序来证明my_fun一定return random integer?
Follow up2: How to detect a pattern in the distribution of the random
integers? Ex. 1,2,3,1,2,3,1,2,3
3.面试官:白人SDET,没问是不是lead
Given an equation (Ex."2*5+1+3*6" or "3/6-1*4+1") as a string,calculate the
equation. So "2*5+1" becomes 10+1=11.我用了divide and conquer.
把“2*5+1”变成 "2*5" 和 “1”。分别计算两个sub-problem.。
4.面试官:白人 lead SDET
reverse a linked list.我用了recursion.面试官不太满意。