diff options
-rwxr-xr-x | solver.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,7 @@ Usage: solver.py -h|--help Options: -h, --help Display this help message -p Display solution with parents [DEFAULT is without parents] + --print Display only the original (unresolved) grid ''' import copy @@ -366,6 +367,9 @@ def main(): print('Initial grid:') print(kanagrid) + if args['--print']: + return + del input_dict grids = {} |