Skip to content

Category Archives: Geometric

Given ‘n’ points on 2-D plane, find the maximum number of points that can be enclosed by a fixed-radius circle of radius ‘R’. Note: The point… Read More
Given a circle of radius r and center in point(x1, y1) and given a point(x2, y2). The task is move center of circle from given… Read More
Given a convex hull, we need to add a given number of points to the convex hull and print the convex hull after every point… Read More
A convex hull is the smallest convex polygon containing all the given points. Input is an array of points specified by their x and y… Read More
Given two convex polygons, we need to find the lower and upper tangents to these polygons. As shown in the figure below, and show upper and lower tangent… Read More
Given coordinates of all three vertices of the triangle in the 2D plane, the task is to find all three angles.Example:   Input : A =… Read More
Only user-defined functions. No inbuilt functions at all. No scanning for inputs, directly assign to vars.  Level 1: (2 hours – pen & paper) 1.Solve the equation… Read More
Given N points in 2-dimensional space, we need to find three points such that triangle made by choosing these points should not contain any other… Read More
A convex polygon and a convex clipping area are given. The task is to clip polygon edges using the Sutherland–Hodgman Algorithm. Input is in the… Read More
Given a set of points, a Convex hull is the smallest convex polygon containing all the given points. Input : points[] = {{0, 3}, {1,… Read More
Given N lines and one starting point and destination point in 2-dimensional space. These N lines divide the space into some blocks. We need to… Read More
Given area and hypotenuse, the aim is to print all sides if right triangle can exist, else print -1. We need to print all sides… Read More
Given N points in 2-dimensional space, we need to print the count of the minimum number of lines which traverse through all these N points… Read More
What is the maximum number of squares of size 2×2 units that can be fit in a right-angled isosceles triangle of a given base (in… Read More
Given number of cuts, find the maximum number of possible pieces.Examples:   Input : 2 Output : 4 Input : 3 Output : 7   Recommended:… Read More