Completed Fall 2021
- Use the
cdcommand to change into the directory for this repository - Change into the program directory by typing
cd palindromechecker - Install the dependencies for the project by typing
poetry install - Run the program with its different configurations by typing:
poetry run palindromechecker --word civic --approach reversepoetry run palindromechecker --word civic --approach recursivepoetry run palindromechecker --word taylor --approach reversepoetry run palindromechecker --word taylor --approach recursive- Please note that the program will not work unless you add the required source code
- Make sure that you have implemented a high-coverage (i.e., 100%) test suite for this program!
- Run the test suite for the program by typing:
poetry run task test: run the test suite without coverage trackingpoetry run task coverage: run the test suite with coverage tracking
- Confirm that the program is producing the expected output
Please refer to the final report for reflection and findings.