Class PE00XX

    • Constructor Summary

      Constructors 
      Constructor Description
      PE00XX()
      A simple constructor to set number and title.
    • Method Summary

      Modifier and Type Method Description
      void finish()
      Implementation of the finishing method called after solving the problem.
      void prepare()
      Implementation of the preparation method called before solving the problem.
      java.lang.String solve()
      This method solves the given problem.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • PE00XX

        public PE00XX()
        A simple constructor to set number and title.
    • Method Detail

      • prepare

        public void prepare()
        Implementation of the preparation method called before solving the problem. It overrides the standard implementation in Problem.
        Specified by:
        prepare in interface Solvable
        Overrides:
        prepare in class Problem
      • solve

        public java.lang.String solve()
        This method solves the given problem.
        Returns:
        the solution of the problem / task as string
      • finish

        public void finish()
        Implementation of the finishing method called after solving the problem. It overrides the standard implementation in Problem.
        Specified by:
        finish in interface Solvable
        Overrides:
        finish in class Problem