Don Page

I enjoy growing software and experiencing life.

Fibonacci sequence using Linked Lists

Fibonacci Calculator C++

Learn how a doubly linked list can be used to calculate the Fibonacci sequence at a certain term. This could be done in many different and more efficient ways, but this project could help you understand how doubly linked lists work. This Fibonacci Program was written in c++.

Sudoku Program in C++

Sudoku is a logic-based game/puzzle. The goal is to fill a 9×9 grid so that each column, each row, and each of the nine 3×3 boxes (blocks) has the digits from 1 to 9 only one time each. The puzzle starts out as a partially filled grid. I explain how to solve this board using c++.