Facebook Interview Question for Java Developers


Country: United States




Comment hidden because of low score. Click to expand.
0
of 0 vote

The smallest circle would have two points from the set of points as diameter. Thus, the problem is choosing two such points for which all points fall inside the circle. This is O(n3) by definition.

- Champaklal October 24, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

I assume they are looking for an approximation, since the iterative method for determining a minimal enclosing circle is really specialized knowledge to pull out during an interview.

Instead, assume all points are equidistance from each other and form a regular polygon. The radius of that polygon would be the radius of the circle enclosing them, which is easily found using the law of cosines. Still, this is just an upper bound approximation, as the points are probably not going to be equidistance from each other.

- xiongmao December 16, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

Feels like a gradient-descent problem:

minimize (max((x1-x)^2 + (y1 -y)^2, (x2-x)^2 + (y2 -y)^2, ..., (xN-x)^2 + (yN -y)^2)

Not sure this is a good interview question.

- Anonymous June 25, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
0
of 0 vote

sqrt ( (max X - min X)^2 + (max Y - min Y)^2 ) / 2

- Nitu October 12, 2019 | Flag Reply
Comment hidden because of low score. Click to expand.
-1
of 3 vote

class Point {
	double x;
	double y;
	Point (double x, double y) {
		this.x = x;
		this.y = y;
	}
}

double getRadius(List<Point> points) {
	Point max = new Point(0.0, 0.0);
	Point min = new Point(0.0, 0.0);
	for (Point p : points) {
		if (max.x < p.x) {
			max.x = p.x;
		}
		if (max.y < p.y) {
			max.y = p.y;
		}
		if (min.x = 0 || min.x > p.x) {
			min.x = p.x;
		if (min.y = 0 || min.y > p.y) {
			min.y = p.y;
		}
	}
	Point center = new Point((max.x - min.x)/2, (max.y - min.y)/2);
	if (max.x > max.y) {
		return max.x - center.x;
	} else {
		return max.y - center.y;
	}
}

- robosquid February 21, 2018 | Flag Reply
Comment hidden because of low score. Click to expand.
-2
of 2 vote

Get left uppermost point and right lowest point. This will be diameter of your circle

- Anonymous February 12, 2018 | Flag Reply


Add a Comment
Name:

Writing Code? Surround your code with {{{ and }}} to preserve whitespace.

Books

is a comprehensive book on getting a job at a top tech company, while focuses on dev interviews and does this for PMs.

Learn More

Videos

CareerCup's interview videos give you a real-life look at technical interviews. In these unscripted videos, watch how other candidates handle tough questions and how the interviewer thinks about their performance.

Learn More

Resume Review

Most engineers make critical mistakes on their resumes -- we can fix your resume with our custom resume review service. And, we use fellow engineers as our resume reviewers, so you can be sure that we "get" what you're saying.

Learn More

Mock Interviews

Our Mock Interviews will be conducted "in character" just like a real interview, and can focus on whatever topics you want. All our interviewers have worked for Microsoft, Google or Amazon, you know you'll get a true-to-life experience.

Learn More