-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathday3.java
68 lines (61 loc) · 1.84 KB
/
day3.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
58
59
60
61
62
63
64
65
66
67
68
/**
* Created by kylel95 on 12/4/18.
*/
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.*;
/**
* find overlaps in 2d array
*
clear
javac day3.java
java day3 < day3.txt > day3output.txt
cat day3output.txt
*/
public class day3 {
public static void main(String [] args){
Scanner in = new Scanner(new BufferedReader(new InputStreamReader(System.in)));
String s;
int line, left, top, width, height;
while(in.hasNext()){
s = in.nextLine();
line = getLine(s);
left = getFromLeft(s);
top = getFromTop(s);
// width = getWidth(s);
// height = getHeight(s);
System.out.println(line + " " + left + " " + top);
}
}
public static int getLine(String s){
String [] arr = s.split(" ");
String haystack = arr[0];
haystack = haystack.replaceFirst("#", "");
return Integer.parseInt(haystack);
}
public static int getFromLeft(String s){
String [] arr = s.split(" ");
String haystack = arr[2];
String [] comma = haystack.split(",");
return Integer.parseInt(comma[0]);
}
public static int getFromTop(String s){
String [] arr = s.split(" ");
String haystack = arr[2];
haystack = haystack.replaceFirst(":", "");
String [] comma = haystack.split(",");
return Integer.parseInt(comma[2]);
}
public static int getWidth(String s){
String [] arr = s.split(" ");
String haystack = arr[3];
String [] x = haystack.split("x");
return Integer.parseInt(x[0]);
}
public static int getHeight(String s){
String [] arr = s.split(" ");
String haystack = arr[3];
String [] x = haystack.split("x");
return Integer.parseInt(x[1]);
}
}