DEV Community

Cover image for Codecademy CS102 Final Project: Find a Trail
acasagranda
acasagranda

Posted on

Codecademy CS102 Final Project: Find a Trail

For my final project in the Codecademy CS102 course I wrote a program to recommend local hiking trails.

Project Requirements

The program must make recommendations based on input from the user using both search and sort algorithms.

My Program

I read in data from local State Parks and use a merge sort to sort the trails by length.

Users can choose to filter by State Park, trail length and/or trail difficulty.

Recommendations are found by both binary and linear searches.

The code can be found here at GitHub.

Top comments (0)