Introduction to Computer Science:
Quiz 18:  Tic Tac Toe  (Pop quiz)
 Sewickley Academy, 2000-2001

See Course Home Page.
 
Date of Quiz: Tue Apr-24

Write a function which returns a bool which is true iff the most recent move in a Tic Tac Toe game produced a winner.  If there is a winner, the function should also draw a line through the winning run.  You may assume that the board is global and is either a C++ built-in matrix or an apmatrix, but all other relevant variables must be included in your functions' signatures.

Good luck.

DK


See Course Home Page.