Large diffs are not rendered by default.

@@ -96,7 +96,7 @@ void Reader() {



File file = new File("input.txt");
File file = new File("data-of-awesomeness.txt");



@@ -23,11 +23,11 @@ public Point[] ShiftCalculator(int w, int h, Point[] p){

// Start at the right bottom with placeing labels - thus inverting the sorted array
for ( Point point : p ) {
System.out.println( "Normal: " + point.getX() + " " + point.getY() );
System.out.println(point.getX() + " " + point.getY() );
}
Collections.reverse( Arrays.asList(p) );
for ( Point point : p ) {
System.out.println( "Invert: " + point.getX() + " " + point.getY() );
// System.out.println( "Invert: " + point.getX() + " " + point.getY() );
}

// Set the default slider position to 0