Exercise #2: Strategy without classes A. Review class-based implementation Go to exercises/strategy directory Run doctest on strategy.py to check the expected behavior: $ python3 -m doctest strategy.py B. Refactor strategy.py, changing concrete strategies into functions Run doctest with the -f option to stop at first error or failure: $ python3 -m doctest strategy.py -f