//*****************************************************************************
//
// Program: Homework 7 -- Programming Assignment 2 Moving on a checkerboard
//
// Author: Travis Dillon
// Email: tdillon@ace.cs.ohiou.edu
//
// Description: This program finds the highest value path you can take from
// one end of a checker board to the other.
//
// Date: March 02, 2004
//
//*****************************************************************************
#include "prog2.h"
int main()
{
Checker ralph;
ralph.get_data(); //O(n^2) n = width of checker board
ralph.build_table(); //O(n^2)
ralph.find_max(); //O(n)
ralph.output_path(); //O(n)
ralph.output_dollars(); //O(1)
return EXIT_SUCCESS;
}