top of page

A Variety of Challenges

Portfolio / Projects

Work Desk

This is a simple game using terminal output with a 7 x 7 grid using a circular linked list with R = Player Red and B = Player Blue. It recognizes if the same four are matched horizontally, vertically, or diagonally the 4 matching color-chipped player will win.

Click Play to see it in action!

Click Play to see it in action!

This is a spell checker with approximately 60,000 words in a usa.txt file (dictionary). To enhance the runtime we use std::unordered_map where a file is read in, and spell-checked. If the word in the user prompted entered .txt file is not in the dictionary and not yet seen, a list of suggested words will populate in alphabetical order. This will continue until the EOF.

Click Play to see it in action!

This is a simple terminal game inspired by Legend of Zelda, where Link has to traverse all the terrain to power up enough to take on Calamity Ganon. The program starts with prompting the user for an input file (ie. puzzle01.txt) then coordinates on a 7x7 tablet. This code has a step counter that starts at (0 - 9 then continues A-Z). The "_" represent a path that cannot be taken thus we need to navigate around the 7x7 grid using recursion. Should a path not be found, there will be error handling to output that a path was not found. Otherwise, there will be a path from start to end input coordinates. Let's go save Zelda!

bottom of page