Class SolutionDay14

java.lang.Object
com.expedient.adventofcodejade.BaseSolution
com.expedient.adventofcodejade.solutions.year2024.SolutionDay14

public class SolutionDay14 extends BaseSolution
  • Constructor Details

  • Method Details

    • printRobots

      public static void printRobots(List<SolutionDay14.Robot> robots, int rowCount, int colCount, String title)
    • clearConsole

      public static final void clearConsole()
    • partOne

      public Object partOne(PuzzleInput input)
      Description copied from class: BaseSolution
      Logic for part one of the solution. Must be overridden when implementing the solution.
      Specified by:
      partOne in class BaseSolution
      Parameters:
      input - the PuzzleInput to be used for the solution
      Returns:
      output of this part of the solution
    • partTwo

      public Object partTwo(PuzzleInput input)
      Description copied from class: BaseSolution
      Logic for part two of the solution. Must be overridden when implementing the solution.
      Specified by:
      partTwo in class BaseSolution
      Parameters:
      input - the PuzzleInput to be used for the solution
      Returns:
      output of this part of the solution