diff options
Diffstat (limited to 'challenge-281/packy-anderson/python')
| -rwxr-xr-x | challenge-281/packy-anderson/python/ch-2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-281/packy-anderson/python/ch-2.py b/challenge-281/packy-anderson/python/ch-2.py index f1b8803a71..72f51c823f 100755 --- a/challenge-281/packy-anderson/python/ch-2.py +++ b/challenge-281/packy-anderson/python/ch-2.py @@ -65,7 +65,7 @@ def leastMoves(start, end): def solution(start, end): print(f'Input: $start = \'{start}\', $end = \'{end}\'') count, moves = leastMoves(start, end) - print(f'Output: {count}\n\n{moves}\n') + print(f'Output: {count}\n\n{moves}') print('Example 1:') solution('g2', 'a8') |
