-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuestion1.java
57 lines (41 loc) · 1.3 KB
/
Question1.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.test;
import java.util.ArrayList;
import java.util.List;
public class Question1 {
public static void main(String[] args) {
List<Point> points = new ArrayList<Point>();
points.add(new Point(-1,0));
points.add(new Point(2,2));
points.add(new Point(1,3));
printBounds(points);
}
public static void printBounds(List<Point> points) {
int smallestX = points.get(0).x;
int largestY = points.get(0).y;
int[] smallestXs = new int[2];
int[] largestYs = new int[2];
smallestXs[0] = smallestX;
largestYs[0] = largestY;
for(int i=0; i< points.size(); i++)
{
if(points.get(i).x < smallestX) {
smallestXs[0] = points.get(i).x;
smallestXs[1] = smallestXs[0];
}
if(points.get(i).y > largestY) {
largestYs[1] = largestYs[0];
largestYs[0] = points.get(i).y;
}
System.out.println(""+largestYs[0] +","+ largestYs[1] );
}
System.out.println("Bottom -left"+smallestXs[0] +","+ smallestXs[1] );
System.out.println("Top-right"+largestYs[0] +","+ largestYs[1] );
}
}
class Point {
int x, y;
Point(int x, int y) {
this.x = x;
this.y = y;
}
}