Joshua Kahlbaugh
Tic Tac Toe
Try winning a tic tac toe game against the computer on impossible difficulty! You'll find that the computer is unbeatable because it relies on an algorithm to get the best possible move to make against you. The minimax algorithm it uses works by recursively going through every possible move that could be taken by either player until it reaches an end state which returns a score based on whether the state is a win, loss, or draw.
Sudoku
Sudoku is another fun game, however, there is no fancy algorithm to make this one work. I downloaded a sudoku generator from npm and integrated it into this website. This project was more helpful for me to learn how to set board states, style the board, and pass properties to components in react.