Java (wow throwback)
This commit is contained in:
parent
181de3045b
commit
1916d57168
1
java/.gitignore
vendored
Normal file
1
java/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
Problem.class
|
29
java/2015/1/Problem.java
Normal file
29
java/2015/1/Problem.java
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Paths;
|
||||||
|
|
||||||
|
public class Problem {
|
||||||
|
public static void main(String[] args) {
|
||||||
|
try {
|
||||||
|
char[] input = new String(Files.readAllBytes(Paths.get("../../../data/2015/1/input.txt"))).toCharArray();
|
||||||
|
int floor = 0;
|
||||||
|
for (int i = 0; i < input.length; i++) {
|
||||||
|
if (input[i] == '(') floor++;
|
||||||
|
else floor--;
|
||||||
|
}
|
||||||
|
System.out.println("Part 1: " + floor);
|
||||||
|
|
||||||
|
floor = 0;
|
||||||
|
int steps = 0;
|
||||||
|
for (int i = 0; i < input.length; i++) {
|
||||||
|
if (input[i] == '(') floor++;
|
||||||
|
else floor--;
|
||||||
|
steps++;
|
||||||
|
if (floor < 0) break;
|
||||||
|
}
|
||||||
|
System.out.println("Part 2: " + steps);
|
||||||
|
} catch (IOException ex) {
|
||||||
|
System.out.println(ex);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
6
java/bin/run
Executable file
6
java/bin/run
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
year=$1
|
||||||
|
day=$2
|
||||||
|
|
||||||
|
javac $year/$day/Problem.java && cd $year/$day && time java Problem
|
Loading…
Reference in New Issue
Block a user