Example #1
0
 public static void Run()
 {
     try
     {
         Chalk.BlueLine("Welcome to the Sudoku Solver CLI. Type 'help' or '?' to display available commands.");
         //Todo remove this
         SetSolver(new BasicBacktrackSolver());
         LifeCycle();
     }
     catch (Exception e)
     {
         Chalk.RedLine(e.Message);
     }
 }
Example #2
0
 public void Execute()
 {
     Chalk.RedLine($"sudoku multi solver: command not found: {attemptedCommand}");
 }