Java (wow throwback)

This commit is contained in:
Bill Rossi 2023-12-19 14:15:50 -05:00
parent 181de3045b
commit 1916d57168
3 changed files with 36 additions and 0 deletions

1
java/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
Problem.class

29
java/2015/1/Problem.java Normal file
View 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
View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
year=$1
day=$2
javac $year/$day/Problem.java && cd $year/$day && time java Problem