summaryrefslogtreecommitdiff
path: root/dayXX.java
blob: bf50f5e977b8caa19e9e59f2f79f919f69a04a8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import java.io.IOException;
import java.io.RandomAccessFile;

public class dayXX {
  public static void main(String args[]) throws IOException {
    RandomAccessFile input = new RandomAccessFile("test", "r");
    System.out.println("Day XX Part 1: " + part1(input));
    input.seek(0);
    System.out.println("Day XX Part 2: " + part2(input));
    input.close();
  }

  public static String part1(RandomAccessFile input) throws IOException {
    return "WIP";
  }

  public static String part2(RandomAccessFile input) throws IOException {
    return "WIP";
  }
}