由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
JobHunting版 - 面经:IXL的code test题目
相关主题
一周多了。。。等的太不淡定了。。。 说两个面经吧FLAG面试总结
问一体G onsite,经常出现google 面经
M家, B家, Epic, Yelp, Hulu, Amazon面经任意输入STRING,转换为INTEGER,
IXL 电话面经递归法parse计算数字string
请教一道题:Remove adjacent duplicate char recursively froF M面经
我再说说我挂掉的那道题吧新鲜,可以通过HTTP POST发送你的简历
Riverbed 面经google onsite悲剧,求解
F家电面:group AnagramsMS onsite面经
相关话题的讨论汇总
话题: string话题: return话题: option话题: arkansas话题: arizona
进入JobHunting版参与讨论
1 (共1页)
t*******3
发帖数: 734
1




Please submit solutions to the following two Java programming questions.
Feel free to use standard Java APIs in your solutions and also to compile/
test
your code. However, the solutions should represent your own original work.
We will be examining your solutions for correctness, efficiency, and
good programming practice.
QUESTION #1:
Write a Java method that takes an array of "sets" of String objects,
and determines whether _all_ sets in the array are equivalent.
Each "set" in the input array is represented as an array of String objects,
in
no particular order, and possibly containing duplicates. Nevertheless, when
determining whether two of these "sets" are equivalent, you should disregard
order and duplicates. For example, the sets represented by these arrays are
all equivalent:
{"a", "b"}
{"b", "a"}
{"a", "b", "a"}
The signature for your method should be:
public static boolean allStringSetsIdentical(String[ ][ ] sets)
Examples of the method in operation:
allStringSetsIdentical({"a","b"},{"b","b","a"},{"b","a"}) returns true
allStringSetsIdentical({"a","b"},{"a"},{"b"}) returns false
QUESTION #2:
//
// The following Java code is responsible for creating an HTML "SELECT"
// list of U.S. states, allowing a user to specify his or her state. This
might
// be used, for instance, on a credit card transaction screen.
//
// Please rewrite this code to be "better", in whatever way you define that.
// Submit your replacement code, and please also submit a few brief comments
// explaining why you think your code is better than the sample.
//
// (For brevity, this sample works for only 5 states. The real version would
// need to work for all 50 states. But it is fine if your rewrite shows only
// the 5 states here.)
//
//
// Generates an HTML select list that can be used to select a specific
// U.S. state.
//
static String createStateSelectList()
{
return
"\n"
;
}
//
// Parses the state from an HTML form submission, converting it to
// the two-letter abbreviation. We need to store the two-letter abbreviation
// in our database.
//
static String parseSelectedState(String s)
{
if (s.equals("Alabama")) { return "AL"; }
if (s.equals("Alaska")) { return "AK"; }
if (s.equals("Arizona")) { return "AZ"; }
if (s.equals("Arkansas")) { return "AR"; }
if (s.equals("California")) { return "CA"; }
// more states here
}
//
// Displays the full name of the state specified by the two-letter code.
//
static String displayStateFullName(String abbr) {
{
if (abbr.equals("AL")) { return "Alabama"; }
if (abbr.equals("AK")) { return "Alaska"; }
if (abbr.equals("AZ")) { return "Arizona"; }
if (abbr.equals("AR")) { return "Arkansas"; }
if (abbr.equals("CA")) { return "California"; }
// more states here
}
t*******3
发帖数: 734
2
这个公司根据我和同学的经验, 招人方面非常奇怪。 所有题目全部做对,都不一定会
给你下一轮面试。 可以连续给你4,5轮电话面试,每次都是算法, 数学,编程, 和智
力题。每次全部做对都不一定给你onsite。面试官水平都感觉非常低。 说一点他们没
见过的算法, 他们就只会啊,啊。给的很简单的数学证明,他们就是弄不懂,但是他
们也不怎么问。 他们大概只看标准答案。感觉这个公司的人水平都很差。 但是却非常
怪异地去挑剔他人。
就连面试官说I think you did perfect. I have no critic. 即使如此都可能没有下
一轮。 每次一轮面完之后可能相隔几个星期都没有回复。 你发email都不回。
反正不知道其招人标准是什么样子的。
t*******3
发帖数: 734
3
这个公司根据我和同学的经验, 招人方面非常奇怪。 所有题目全部做对,都不一定会
给你下一轮面试。 可以连续给你4,5轮电话面试,每次都是算法, 数学,编程, 和智
力题。每次全部做对都不一定给你onsite。面试官水平都感觉非常低。 说一点他们没
见过的算法, 他们就只会啊,啊。给的很简单的数学证明,他们就是弄不懂,但是他
们也不怎么问。 他们大概只看标准答案。感觉这个公司的人水平都很差。 但是却非常
怪异地去挑剔他人。
就连面试官说I think you did perfect. I have no critic. 即使如此都可能没有下
一轮。 每次一轮面完之后可能相隔几个星期都没有回复。 你发email都不回。
反正不知道其招人标准是什么样子的。
c*******3
发帖数: 28
4
确实 这公司感觉没什么水平 但是招人却比google都难

【在 t*******3 的大作中提到】
: 这个公司根据我和同学的经验, 招人方面非常奇怪。 所有题目全部做对,都不一定会
: 给你下一轮面试。 可以连续给你4,5轮电话面试,每次都是算法, 数学,编程, 和智
: 力题。每次全部做对都不一定给你onsite。面试官水平都感觉非常低。 说一点他们没
: 见过的算法, 他们就只会啊,啊。给的很简单的数学证明,他们就是弄不懂,但是他
: 们也不怎么问。 他们大概只看标准答案。感觉这个公司的人水平都很差。 但是却非常
: 怪异地去挑剔他人。
: 就连面试官说I think you did perfect. I have no critic. 即使如此都可能没有下
: 一轮。 每次一轮面完之后可能相隔几个星期都没有回复。 你发email都不回。
: 反正不知道其招人标准是什么样子的。

d**********x
发帖数: 4083
5
噗,那还面个毛啊。。

【在 t*******3 的大作中提到】
: 这个公司根据我和同学的经验, 招人方面非常奇怪。 所有题目全部做对,都不一定会
: 给你下一轮面试。 可以连续给你4,5轮电话面试,每次都是算法, 数学,编程, 和智
: 力题。每次全部做对都不一定给你onsite。面试官水平都感觉非常低。 说一点他们没
: 见过的算法, 他们就只会啊,啊。给的很简单的数学证明,他们就是弄不懂,但是他
: 们也不怎么问。 他们大概只看标准答案。感觉这个公司的人水平都很差。 但是却非常
: 怪异地去挑剔他人。
: 就连面试官说I think you did perfect. I have no critic. 即使如此都可能没有下
: 一轮。 每次一轮面完之后可能相隔几个星期都没有回复。 你发email都不回。
: 反正不知道其招人标准是什么样子的。

l*****a
发帖数: 14598
6
也去不了,积累面试经验被

【在 d**********x 的大作中提到】
: 噗,那还面个毛啊。。
p*****2
发帖数: 21240
7
这个公司干嘛的呀?
p*****2
发帖数: 21240
8
好像题目也不难呀。
1 (共1页)
进入JobHunting版参与讨论
相关主题
MS onsite面经请教一道题:Remove adjacent duplicate char recursively fro
刚刚FB电面试完我再说说我挂掉的那道题吧
问道zenefits的店面题。。。Riverbed 面经
F一道ONSITE题目F家电面:group Anagrams
一周多了。。。等的太不淡定了。。。 说两个面经吧FLAG面试总结
问一体G onsite,经常出现google 面经
M家, B家, Epic, Yelp, Hulu, Amazon面经任意输入STRING,转换为INTEGER,
IXL 电话面经递归法parse计算数字string
相关话题的讨论汇总
话题: string话题: return话题: option话题: arkansas话题: arizona