private static IRobotState SetNewY(IRobotStateBuilder robotStateBuilder, int newY)
 {
     return(robotStateBuilder.WithY(newY).Build());
 }
 private static IRobotState SetNewX(IRobotStateBuilder robotStateBuilder, int newX)
 {
     return(robotStateBuilder.WithX(newX).Build());
 }