File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
src/main/java/com/adventofcode/flashk/day17 Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change 1515@ Setter
1616public class Tile implements Comparable <Tile >{
1717
18- private static final Vector2 REVERSE = new Vector2 (-1 ,-1 );
1918 public static final Vector2 RIGHT = Vector2 .right ();
2019 public static final Vector2 LEFT = Vector2 .left ();
2120 public static final Vector2 UP = Vector2 .down ();
@@ -26,10 +25,6 @@ public class Tile implements Comparable<Tile>{
2625 private int totalHeatloss = Integer .MAX_VALUE ;
2726 private int heatloss ;
2827
29- //private Tile parent;
30- private Vector2 travelDirection ;
31- private int travelLength ;
32-
3328 private final Set <Pair <Vector2 , Integer >> visitedDirectionsPerLength = new HashSet <>();
3429
3530 public Tile (int heatloss , int row , int col ){
You can’t perform that action at this time.
0 commit comments